Skip to main content
POST
/
api
/
doordash
/
stores
/doordash/stores
curl --request POST \
  --url https://api.anysite.io/api/doordash/stores \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "store": "<string>",
  "timeout": 300
}
'
[
  {
    "id": "<string>",
    "name": "<string>",
    "@type": "DoordashStore",
    "description": "<string>",
    "price_range": 123,
    "price_range_display": "<string>",
    "rating": 123,
    "rating_count": 123,
    "rating_count_display": "<string>",
    "currency": "<string>",
    "timezone": "<string>",
    "store_bio": "<string>",
    "image": "<string>",
    "banner": "<string>",
    "phone": "<string>",
    "website": "<string>",
    "business_id": "<string>",
    "business_name": "<string>",
    "cuisines": [],
    "is_open": true,
    "offers_delivery": false,
    "offers_pickup": false,
    "is_dashpass_partner": false,
    "delivery_fee_text": "<string>",
    "delivery_minutes": "<string>",
    "pickup_minutes": "<string>",
    "asap_minutes": 123,
    "photo_count_text": "<string>",
    "address": {
      "@type": "DoordashAddress",
      "street": "<string>",
      "city": "<string>",
      "state": "<string>",
      "display_address": "<string>",
      "country_code": "<string>",
      "latitude": 123,
      "longitude": 123
    },
    "hours": [],
    "category_count": 0,
    "item_count": 0,
    "categories": [],
    "review_summary": {
      "@type": "DoordashReviewSummary",
      "average_rating": 123,
      "rating_count": 123,
      "review_count": 123,
      "stars_breakdown": []
    },
    "reviews": []
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
store
string
required

DoorDash store id or a full store URL

Minimum string length: 1
Examples:

"19906"

"https://www.doordash.com/store/katzs-delicatessen-new-york-19906/"

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

id
string
required
name
string
required
@type
string
default:DoordashStore
description
string | null
price_range
integer | null
price_range_display
string | null
rating
number | null
rating_count
integer | null
rating_count_display
string | null
currency
string | null
timezone
string | null
store_bio
string | null
image
string | null
banner
string | null
phone
string | null
website
string | null
business_id
string | null
business_name
string | null
cuisines
string[]
is_open
boolean | null
offers_delivery
boolean
default:false
offers_pickup
boolean
default:false
is_dashpass_partner
boolean
default:false
delivery_fee_text
string | null
delivery_minutes
string | null
pickup_minutes
string | null
asap_minutes
integer | null
photo_count_text
string | null
address
object
hours
object[]
category_count
integer
default:0
item_count
integer
default:0
categories
object[]
review_summary
object
reviews
object[]