Endpoint Playground
Test Crawlora's UberEats Store 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/259fe6e9-9e3a-429d-ae24-be5eda54ba64" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| store_id (path) | string | Yes | 259fe6e9-9e3a-429d-ae24-be5eda54ba64 | UberEats store UUID, as returned by the search endpoint's storeUuid field |
{
"code": 200,
"msg": "OK",
"data": {
"storeUuid": "259fe6e9-9e3a-429d-ae24-be5eda54ba64",
"title": "Udupi Palace",
"slug": "udupi-palace-mission",
"url": "https://www.ubereats.com/store/udupi-palace-mission/259fe6e9-9e3a-429d-ae24-be5eda54ba64",
"address": {
"street": "1007 Valencia St",
"city": "San Francisco",
"region": "CA",
"postalCode": "94110",
"country": "US"
},
"latitude": 37.7567,
"longitude": -122.421,
"phoneNumber": "+14155551234",
"rating": 4.5,
"reviewCount": 2000,
"priceBucket": "$$",
"cuisineTags": [
"Indian",
"Vegetarian"
],
"isOpen": true,
"isOrderable": true,
"workingHoursTagline": "Open until 9:30 PM",
"currencyCode": "USD",
"menu": [
{
"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 a normalized UberEats store: address, phone, rating, cuisine tags, hours tagline, and the full menu (sections with items, descriptions, and prices). Credential-free public UberEats data.
{
"code": 200,
"msg": "OK",
"data": {
"storeUuid": "259fe6e9-9e3a-429d-ae24-be5eda54ba64",
"title": "Udupi Palace",
"slug": "udupi-palace-mission",
"url": "https://www.ubereats.com/store/udupi-palace-mission/259fe6e9-9e3a-429d-ae24-be5eda54ba64",
"address": {
"street": "1007 Valencia St",
"city": "San Francisco",
"region": "CA",
"postalCode": "94110",
"country": "US"
},
"latitude": 37.7567,
"longitude": -122.421,
"phoneNumber": "+14155551234",
"rating": 4.5,
"reviewCount": 2000,
"priceBucket": "$$",
"cuisineTags": [
"Indian",
"Vegetarian"
],
"isOpen": true,
"isOrderable": true,
"workingHoursTagline": "Open until 9:30 PM",
"currencyCode": "USD",
"menu": [
{
"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>" \
-H "x-api-key: $CRAWLORA_API_KEY"