Endpoint Playground
Test Crawlora's UberEats Search 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/search?latitude=37.7749&longitude=-122.4194&query=pizza" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| latitude | number | Yes | 37.7749 | Delivery search center latitude |
| longitude | number | Yes | -122.4194 | Delivery search center longitude |
| query | string | No | pizza | Keyword — restaurant name, cuisine, or dish |
| offset | integer | No | Result offset for the location feed (used only when query is omitted). Default 0 | |
| limit | integer | No | Number of restaurants to return, clamped to 50. Default 20 | |
| cursor | string | No | Opaque pagination cursor from a previous keyword-search response |
{
"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",
"rating": 4.5,
"reviewCount": 2000,
"deliveryEtaText": "21 min",
"imageUrl": "https://tb-static.uber.com/prod/image-proc/processed_images/example.jpeg",
"latitude": 37.7567,
"longitude": -122.421,
"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 location: name, rating, review count, delivery estimate, cuisine tags, and image. Pass a keyword to search by name/cuisine/dish, or omit it to browse the general feed for that location. 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",
"rating": 4.5,
"reviewCount": 2000,
"deliveryEtaText": "21 min",
"imageUrl": "https://tb-static.uber.com/prod/image-proc/processed_images/example.jpeg",
"latitude": 37.7567,
"longitude": -122.421,
"currencyCode": "USD"
}
],
"offset": 0,
"hasMore": true
}
}curl "https://api.crawlora.net/api/v1/ubereats/search?latitude=<latitude>&longitude=<longitude>" \
-H "x-api-key: $CRAWLORA_API_KEY"