Skip to main content
POST
/
api
/
deliveroo
/
restaurants
/deliveroo/restaurants
curl --request POST \
  --url https://api.anysite.io/api/deliveroo/restaurants \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "restaurant": "<string>",
  "timeout": 300
}
'
[
  {
    "id": "<string>",
    "url": "<string>",
    "@type": "DeliverooRestaurant",
    "name": "<string>",
    "alias": "<string>",
    "image": "<string>",
    "description": "<string>",
    "rating": 123,
    "rating_label": "<string>",
    "review_count": 123,
    "address": {
      "@type": "DeliverooRestaurantAddress",
      "street": "<string>",
      "neighborhood": "<string>",
      "city": "<string>",
      "postcode": "<string>",
      "country": "<string>"
    },
    "city_id": 123,
    "zone_id": 123,
    "currency": "<string>",
    "currency_symbol": "<string>",
    "branch_type": "<string>",
    "fulfillment_type": "<string>",
    "menu_id": "<string>",
    "drn_id": "<string>",
    "brand_drn_id": "<string>",
    "category_count": 0,
    "item_count": 0,
    "categories": []
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
restaurant
string
required

Deliveroo restaurant as {city}/{neighborhood}/{slug} or a full menu URL

Minimum string length: 1
Examples:

"london/soho/bar-bruno"

"https://deliveroo.co.uk/menu/london/soho/bar-bruno"

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:DeliverooRestaurant
name
string | null
alias
string | null
image
string | null
description
string | null
rating
number | null
rating_label
string | null
review_count
integer | null
address
object
city_id
integer | null
zone_id
integer | null
currency
string | null
currency_symbol
string | null
branch_type
string | null
fulfillment_type
string | null
menu_id
string | null
drn_id
string | null
brand_drn_id
string | null
category_count
integer
default:0
item_count
integer
default:0
categories
object[]