Endpoint Playground
Test Crawlora's DoorDash dish & item 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/doordash/search/items?query=<query>&latitude=<latitude>&longitude=<longitude>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| query | string | Yes | Dish or item search text | |
| tag | string | No | Cuisine or store tag used to narrow candidate stores | |
| dashPassOnly | boolean | No | Keep only DashPass-eligible stores | |
| asapOnly | boolean | No | Keep only stores currently available ASAP | |
| pickupOnly | boolean | No | Keep only pickup-enabled stores | |
| maxDistanceMiles | number | No | Maximum displayed distance in miles | |
| latitude | number | Yes | Consumer latitude | |
| longitude | number | Yes | Consumer longitude |
{
"code": 200,
"msg": "OK",
"data": {
"query": "duck",
"results": [
{
"name": "Roasted Duck",
"description": "With duck sauce",
"price": "$22.99",
"storeId": "26282644",
"storeName": "Eats",
"distance": "1.2 mi"
}
]
}
}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.
Searches menu items across nearby merchants from the Android mobile guest experience. Nearby candidate stores are selected first, then their menus are read and every item whose name or description matches the query is returned with its parent store. At most five proximity-ranked stores are inspected per request, and a store whose menu cannot be read is skipped, so results are best-effort across that candidate set. An empty result array means no candidate store menu matched, not that no nearby merchant sells the item. No DoorDash account or caller-supplied token is required.
{
"code": 200,
"msg": "OK",
"data": {
"query": "duck",
"results": [
{
"name": "Roasted Duck",
"description": "With duck sauce",
"price": "$22.99",
"storeId": "26282644",
"storeName": "Eats",
"distance": "1.2 mi"
}
]
}
}curl "https://api.crawlora.net/api/v1/doordash/search/items?query=<query>&latitude=<latitude>&longitude=<longitude>" \
-H "x-api-key: $CRAWLORA_API_KEY"