Endpoint Playground
Test Crawlora's UberEats Store Reviews 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/reviews" \
-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",
"rating": 4.5,
"reviewCount": 2000,
"reviews": [
{
"eaterName": "Jamie L.",
"text": "Great food, quick delivery.",
"timeSinceReview": "2 months ago",
"formattedDate": "01/01/26",
"createdAt": "2026-01-01T00:00:00Z"
}
]
}
}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 reviews snapshot embedded in an UberEats store page: aggregate rating, review count, and a sample of recent reviews (reviewer name, text, and relative/absolute date). This is a single on-page snapshot, not a full paginated feed. A store with no written reviews returns an empty reviews list. Credential-free public UberEats data.
{
"code": 200,
"msg": "OK",
"data": {
"storeUuid": "259fe6e9-9e3a-429d-ae24-be5eda54ba64",
"rating": 4.5,
"reviewCount": 2000,
"reviews": [
{
"eaterName": "Jamie L.",
"text": "Great food, quick delivery.",
"timeSinceReview": "2 months ago",
"formattedDate": "01/01/26",
"createdAt": "2026-01-01T00:00:00Z"
}
]
}
}curl "https://api.crawlora.net/api/v1/ubereats/store/<store_id>/reviews" \
-H "x-api-key: $CRAWLORA_API_KEY"