Skip to main content
POST
/
api
/
deliveroo
/
brands
/deliveroo/brands
curl --request POST \
  --url https://api.anysite.io/api/deliveroo/brands \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "brand": "<string>",
  "timeout": 300
}
'
[
  {
    "id": "<string>",
    "url": "<string>",
    "@type": "DeliverooBrand",
    "name": "<string>",
    "image": "<string>",
    "cover": "<string>",
    "description": "<string>",
    "rating": 123,
    "review_count": 123,
    "rating_label": "<string>",
    "tags": []
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
brand
string
required

Deliveroo brand slug or full brand URL

Minimum string length: 1
Examples:

"7bone"

"https://deliveroo.co.uk/brands/7bone"

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

id
string
required
url
string
required
@type
string
default:DeliverooBrand
name
string | null
image
string | null
cover
string | null
description
string | null
rating
number | null
review_count
integer | null
rating_label
string | null
tags
string[]