Skip to main content
POST
/
api
/
doordash
/
stores
/
search
/doordash/stores/search
curl --request POST \
  --url https://api.anysite.io/api/doordash/stores/search \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "city": "<string>",
  "state": "<string>",
  "count": 25,
  "timeout": 300
}
'
[
  {
    "id": "<string>",
    "name": "<string>",
    "@type": "DoordashStoreCard",
    "url": "<string>",
    "image": "<string>",
    "rating": 123,
    "rating_count": 123,
    "rating_count_display": "<string>",
    "price_range": 123,
    "cuisines": [],
    "address": {
      "@type": "DoordashAddress",
      "street": "<string>",
      "city": "<string>",
      "state": "<string>",
      "display_address": "<string>",
      "country_code": "<string>",
      "latitude": 123,
      "longitude": 123
    },
    "eta": 123,
    "distance": "<string>",
    "delivery_fee": 123,
    "service_fee": 123,
    "delivery_fee_text": "<string>",
    "offers_pickup": false,
    "offers": [],
    "popular_items": [],
    "reviews": []
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
city
string
required

City name

Minimum string length: 1
Examples:

"New York"

"Los Angeles"

state
string
required

Two-letter US state code

Required string length: 2
Examples:

"NY"

"CA"

count
integer
required

Max number of stores to return

Required range: 1 <= x <= 50
timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500
cuisine
enum<string> | null

Filter by cuisine

Available options:
African,
American,
Arabic,
Argentinian,
Asian,
Australian,
Bakery,
BBQ,
Boba,
Brazilian,
Breakfast,
Brunch,
Bubble-Tea,
Burgers,
Cafe,
Caribbean,
Cheesesteak,
Chicken,
Chinese,
Coffee,
Colombian,
Comfort-Food,
Crab,
Cuban,
Deli,
Dessert,
Dim-Sum,
Ethiopian,
FastFood,
Filipino,
French,
Greek,
Gyro,
Halal,
Hawaiian,
Healthy,
Indian,
Italian,
Japanese,
Korean,
Latin-American,
Malaysian,
Mediterranean,
Mexican,
Middle-Eastern,
Noodles,
Pakistani,
Peruvian,
Pho,
Pizza,
Poke,
Ramen,
Salads,
Sandwiches,
Seafood,
Smoothie,
Soul-Food,
Soup,
Southern,
Spanish,
Steak,
Sushi,
Tacos,
Tapas,
Thai,
Vegan,
Vegetarian,
Vietnamese,
Wings,
Wraps

Response

Successful Response

id
string
required
name
string
required
@type
string
default:DoordashStoreCard
url
string | null
image
string | null
rating
number | null
rating_count
integer | null
rating_count_display
string | null
price_range
integer | null
cuisines
string[]
address
object
eta
integer | null
distance
string | null
delivery_fee
number | null
service_fee
number | null
delivery_fee_text
string | null
offers_pickup
boolean
default:false
offers
string[]
reviews
object[]