Endpoint Playground
Test Crawlora's UberEats Store Menu API with realistic prefilled parameters. Generate a cURL request, inspect the expected structured JSON response, and open the full docs or pricing page when you are ready to integrate this public web data extraction endpoint into your application.
curl "https://api.crawlora.net/api/v1/ubereats/store/<store_id>/menu" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| store_id (path) | string | Yes | UberEats store UUID, as returned by the search endpoint's storeUuid field |
{
"code": 200,
"msg": "OK",
"data": {
"storeUuid": "259fe6e9-9e3a-429d-ae24-be5eda54ba64",
"storeTitle": "Udupi Palace",
"url": "https://www.ubereats.com/store/udupi-palace-mission/259fe6e9-9e3a-429d-ae24-be5eda54ba64",
"currencyCode": "USD",
"sections": [
{
"title": "Appetizers",
"items": [
{
"uuid": "item-uuid",
"title": "Samosa",
"description": "Crispy pastry with spiced potato filling",
"price": 6.99,
"imageUrl": "https://tb-static.uber.com/prod/example.jpeg",
"isSoldOut": false
}
]
}
]
}
}Public Playground
Sample responses, schemas, request previews, and code snippets are visible before sign in. Create an account when you are ready to save an API key and run authenticated requests.
Returns the full menu for an UberEats store: section titles, items, item descriptions, prices, and availability status. Credential-free public UberEats data.
{
"code": 200,
"msg": "OK",
"data": {
"storeUuid": "259fe6e9-9e3a-429d-ae24-be5eda54ba64",
"storeTitle": "Udupi Palace",
"url": "https://www.ubereats.com/store/udupi-palace-mission/259fe6e9-9e3a-429d-ae24-be5eda54ba64",
"currencyCode": "USD",
"sections": [
{
"title": "Appetizers",
"items": [
{
"uuid": "item-uuid",
"title": "Samosa",
"description": "Crispy pastry with spiced potato filling",
"price": 6.99,
"imageUrl": "https://tb-static.uber.com/prod/example.jpeg",
"isSoldOut": false
}
]
}
]
}
}curl "https://api.crawlora.net/api/v1/ubereats/store/<store_id>/menu" \
-H "x-api-key: $CRAWLORA_API_KEY"