Endpoint Playground
Test Crawlora's DoorDash store discovery 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/doordash/feed?latitude=<latitude>&longitude=<longitude>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| latitude | number | Yes | Consumer latitude | |
| longitude | number | Yes | Consumer longitude | |
| offset | integer | No | Number of stores to skip | |
| limit | integer | No | Max stores to return |
{
"code": 200,
"msg": "OK",
"data": {
"stores": [
{
"storeId": "207343",
"name": "Green Island Restaurant",
"coverImageUrl": "https://img.cdn4dd.com/example.jpg",
"tags": [
"Chinese",
"Noodles"
]
}
]
}
}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 nearby stores for a location from the Android mobile guest experience: store ID, name, cover image and tags, plus rating, price range, delivery fee and ETA when the upstream feed surface reports them. Those metric fields are omitted rather than estimated when it does not, so treat their absence as "not reported". No DoorDash account or caller-supplied token is required.
{
"code": 200,
"msg": "OK",
"data": {
"stores": [
{
"storeId": "207343",
"name": "Green Island Restaurant",
"coverImageUrl": "https://img.cdn4dd.com/example.jpg",
"tags": [
"Chinese",
"Noodles"
]
}
]
}
}curl "https://api.crawlora.net/api/v1/doordash/feed?latitude=<latitude>&longitude=<longitude>" \
-H "x-api-key: $CRAWLORA_API_KEY"