Endpoint Playground
Test Crawlora's DoorDash pickup restaurant 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?query=<query>&latitude=<latitude>&longitude=<longitude>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| query | string | Yes | Restaurant, cuisine, or dish query | |
| latitude | number | Yes | Consumer latitude | |
| longitude | number | Yes | Consumer longitude | |
| tag | string | No | Exact cuisine or store tag, case-insensitive | |
| 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, from 0 to 100 |
{
"code": 200,
"msg": "OK",
"data": {
"query": "pizza",
"results": [
{
"storeId": "123",
"name": "Pizza Place",
"url": "https://www.doordash.com/store/pizza-place-123/",
"tags": [
"Pizza"
],
"asapAvailable": true,
"pickupAvailable": true,
"dashPassEligible": true,
"distance": "1.2 mi",
"address": {
"city": "San Francisco",
"region": "CA"
}
}
]
}
}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 the Android mobile guest catalog for pickup restaurants near a location and supports optional result filters. No DoorDash account or caller-supplied token is required.
{
"code": 200,
"msg": "OK",
"data": {
"query": "pizza",
"results": [
{
"storeId": "123",
"name": "Pizza Place",
"url": "https://www.doordash.com/store/pizza-place-123/",
"tags": [
"Pizza"
],
"asapAvailable": true,
"pickupAvailable": true,
"dashPassEligible": true,
"distance": "1.2 mi",
"address": {
"city": "San Francisco",
"region": "CA"
}
}
]
}
}curl "https://api.crawlora.net/api/v1/doordash/search?query=<query>&latitude=<latitude>&longitude=<longitude>" \
-H "x-api-key: $CRAWLORA_API_KEY"