Endpoint Playground
Test Crawlora's DoorDash menu item details 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>/item/<item_id>?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 | |
| item_id (path) | string | Yes | Menu item name, matched case-insensitively | |
| latitude | number | Yes | Delivery latitude | |
| longitude | number | Yes | Delivery longitude |
{
"code": 200,
"msg": "OK",
"data": {
"storeId": "26282644",
"itemId": "Two Egg Breakfast (gf)",
"name": "Two Egg Breakfast (gf)",
"price": "$18.40",
"url": "https://www.doordash.com/store/x-26282644/"
}
}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 details for a specific menu item from the Android mobile guest experience. The item is matched by name, case-insensitively, against the store menu: DoorDash's anonymous menu surface exposes no stable per-item identifier, so use a name returned by the store menu or item search. A name that is not on the menu returns 404; no substitute item is returned. No DoorDash account or caller-supplied token is required.
{
"code": 200,
"msg": "OK",
"data": {
"storeId": "26282644",
"itemId": "Two Egg Breakfast (gf)",
"name": "Two Egg Breakfast (gf)",
"price": "$18.40",
"url": "https://www.doordash.com/store/x-26282644/"
}
}curl "https://api.crawlora.net/api/v1/doordash/store/<store_id>/item/<item_id>?latitude=<latitude>&longitude=<longitude>" \
-H "x-api-key: $CRAWLORA_API_KEY"