Endpoint Playground
Test Crawlora's DoorDash 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/doordash/store/<store_id>/reviews?latitude=<latitude>&longitude=<longitude>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| store_id (path) | string | Yes | Numeric DoorDash store ID | |
| latitude | number | Yes | Delivery latitude | |
| longitude | number | Yes | Delivery longitude |
{
"code": 200,
"data": {
"averageRating": 1.23,
"ratingCount": "sample",
"reviews": [
{
"avatarInitial": "sample",
"avatarUrl": "https://example.com/resource",
"rating": 1.23,
"reviewerName": "sample",
"reviewerReviewsCount": "sample",
"text": "sample"
}
],
"storeId": "sample-id",
"storeName": "sample",
"url": "https://example.com/resource"
},
"msg": "OK"
}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 store ratings and customer reviews from the Android mobile guest experience for a location. No DoorDash account or caller-supplied token is required.
{
"code": 200,
"data": {
"averageRating": 1.23,
"ratingCount": "sample",
"reviews": [
{
"avatarInitial": "sample",
"avatarUrl": "https://example.com/resource",
"rating": 1.23,
"reviewerName": "sample",
"reviewerReviewsCount": "sample",
"text": "sample"
}
],
"storeId": "sample-id",
"storeName": "sample",
"url": "https://example.com/resource"
},
"msg": "OK"
}curl "https://api.crawlora.net/api/v1/doordash/store/<store_id>/reviews?latitude=<latitude>&longitude=<longitude>" \
-H "x-api-key: $CRAWLORA_API_KEY"