DoorDash API
www.doordash.com
DoorDash — browse restaurants deliverable to a US address and read full store menus with prices, hours and reviews.
- Actions
- 2
- Category
- Food Delivery
- Login
- Not required
- Output
- JSON
Call the DoorDash API
Submit a task, then poll the job until it settles. This example runs dd_restaurant_browse.
curl -X POST https://api.anakin.io/v1/wire/task \
-H "X-API-Key: $ANAKIN_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"action_id": "dd_restaurant_browse",
"params": {
"address": "285 E 31st St, Brooklyn, NY 11226"
}
}'2 actions on www.doordash.com
Read
DoorDash Restaurant Browse
dd_restaurant_browseread10 credits / callLists the restaurants and stores DoorDash delivers to a given US address. Each store includes its name, cuisine, rating, price tier, delivery fee, ETA, location and opening status. Returns one page of 50 stores.
- address
- string · required
- page
- integer
- include_retail
- boolean
DoorDash Restaurant Menu
dd_restaurant_menuread10 credits / callReturns the full menu for a DoorDash store, plus the store's profile. Menu items carry name, description, price, image and dietary tags, grouped by category. Store details include address, phone, hours, rating and reviews.
- store_id
- string · required
- fulfillment_type
- string
- menu_id
- string
- include_items
- boolean
DoorDash API questions
- Is there an API for DoorDash?
- DoorDash does not offer a public data API for this, but Anakin Wire provides 2 maintained endpoints for www.doordash.com. You call Anakin's REST API with an action ID and parameters and get structured JSON back; Anakin handles the browser, proxies, anti-bot, and parsing.
- How do I scrape DoorDash data?
- POST to https://api.anakin.io/v1/wire/task with your API key, the action ID, and its parameters, then poll GET /v1/wire/jobs/{id} until the job settles. There is nothing to install and no scraper to maintain — when www.doordash.com changes its markup, Anakin updates the action.
- Do I need a DoorDash account?
- No. Every DoorDash action listed here runs anonymously — no account and no credentials required.
- What does the DoorDash API cost?
- Usage-based credits, charged per call and refunded automatically when a job fails. New accounts start with 300 free credits and no card. See anakin.io/pricing for the current rates.