Skip to main content
POST
/
api
/
justeat
/
restaurants
/justeat/restaurants
curl --request POST \
  --url https://api.anysite.io/api/justeat/restaurants \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "restaurant": "<string>",
  "timeout": 300
}
'
[
  {
    "id": "<string>",
    "menu_url": "<string>",
    "@type": "JusteatRestaurant",
    "name": "<string>",
    "alias": "<string>",
    "image": "<string>",
    "cover": "<string>",
    "description": "<string>",
    "phone": "<string>",
    "allergen_url": "<string>",
    "rating": 123,
    "rating_count": 123,
    "cuisines": [],
    "address": {
      "@type": "JusteatAddress",
      "street": "<string>",
      "city": "<string>",
      "postcode": "<string>",
      "latitude": 123,
      "longitude": 123,
      "country": "<string>"
    },
    "currency": "<string>",
    "is_halal": false,
    "store_front_type": "<string>",
    "time_zone": "<string>",
    "energy_units": "<string>",
    "supports_delivery": false,
    "supports_collection": false,
    "is_offline": false,
    "eta_minutes": 123,
    "eta_lower": 123,
    "eta_upper": 123,
    "minimum_order_value": 123,
    "delivery_fee": 123,
    "service_fee_text": "<string>",
    "category_count": 0,
    "item_count": 0,
    "opening_times": [],
    "categories": []
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
restaurant
string
required

Just Eat restaurant seo name (slug) or a full menu URL

Minimum string length: 1
Examples:

"papa-johns---farringdon-london"

"https://www.just-eat.co.uk/restaurants-papa-johns---farringdon-london/menu"

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

id
string
required
menu_url
string
required
@type
string
default:JusteatRestaurant
name
string | null
alias
string | null
image
string | null
cover
string | null
description
string | null
phone
string | null
allergen_url
string | null
rating
number | null
rating_count
integer | null
cuisines
string[]
address
object
currency
string | null
is_halal
boolean
default:false
store_front_type
string | null
time_zone
string | null
energy_units
string | null
supports_delivery
boolean
default:false
supports_collection
boolean
default:false
is_offline
boolean
default:false
eta_minutes
number | null
eta_lower
number | null
eta_upper
number | null
minimum_order_value
number | null
delivery_fee
number | null
service_fee_text
string | null
category_count
integer
default:0
item_count
integer
default:0
opening_times
object[]
categories
object[]