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 ID or name | |
| latitude | number | Yes | Delivery latitude | |
| longitude | number | Yes | Delivery longitude |
{
"code": 200,
"data": {
"description": "sample",
"itemId": "sample-id",
"name": "sample",
"price": "sample",
"storeId": "sample-id",
"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 details for a specific menu item from the Android mobile guest experience. No DoorDash account or caller-supplied token is required.
{
"code": 200,
"data": {
"description": "sample",
"itemId": "sample-id",
"name": "sample",
"price": "sample",
"storeId": "sample-id",
"url": "https://example.com/resource"
},
"msg": "OK"
}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"