Endpoint Playground
Test Crawlora's UberEats Feed 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/feed?latitude=<latitude>&longitude=<longitude>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| latitude | number | Yes | Delivery search center latitude | |
| longitude | number | Yes | Delivery search center longitude | |
| offset | integer | No | Result offset for the location feed. Default 0 | |
| limit | integer | No | Number of restaurants to return, clamped to 50. Default 20 |
{
"code": 200,
"msg": "OK",
"data": {
"cityName": "San Francisco",
"restaurants": [
{
"storeUuid": "259fe6e9-9e3a-429d-ae24-be5eda54ba64",
"name": "Udupi Palace",
"slug": "udupi-palace-mission",
"url": "https://www.ubereats.com/store/udupi-palace-mission/259fe6e9-9e3a-429d-ae24-be5eda54ba64",
"rating": 4.5,
"reviewCount": 2000,
"deliveryEtaText": "25-35 min",
"imageUrl": "https://tb-static.uber.com/prod/example.jpeg",
"latitude": 37.7567,
"longitude": -122.421,
"cuisineTags": [
"Indian",
"Vegetarian"
],
"isSponsored": false,
"currencyCode": "USD"
}
],
"offset": 0,
"hasMore": true
}
}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 restaurants delivering to a specific location: name, rating, review count, delivery estimate, cuisine tags, and cover image. Credential-free public UberEats data.
{
"code": 200,
"msg": "OK",
"data": {
"cityName": "San Francisco",
"restaurants": [
{
"storeUuid": "259fe6e9-9e3a-429d-ae24-be5eda54ba64",
"name": "Udupi Palace",
"slug": "udupi-palace-mission",
"url": "https://www.ubereats.com/store/udupi-palace-mission/259fe6e9-9e3a-429d-ae24-be5eda54ba64",
"rating": 4.5,
"reviewCount": 2000,
"deliveryEtaText": "25-35 min",
"imageUrl": "https://tb-static.uber.com/prod/example.jpeg",
"latitude": 37.7567,
"longitude": -122.421,
"cuisineTags": [
"Indian",
"Vegetarian"
],
"isSponsored": false,
"currencyCode": "USD"
}
],
"offset": 0,
"hasMore": true
}
}curl "https://api.crawlora.net/api/v1/ubereats/feed?latitude=<latitude>&longitude=<longitude>" \
-H "x-api-key: $CRAWLORA_API_KEY"