DoorDash
DoorDash's own store search — returns real, currently-listed stores for a free-text query with the delivery fee, rating and ETA DoorDash itself advertises…
DoorDash's own store search — returns real, currently-listed stores for a free-text query with the delivery fee, rating and ETA DoorDash itself advertises on the results card.
Domain: doordash.com
Also known as: DoorDash
Prefer the capability
bowmark.delivery covers this provider and routes around it when it is having a bad day. Reach for this page when you need doordash.com specifically.
Call it directly
bowmark.providers.doordash.search(args: DoordashSearchArgs): Promise<DoordashSearchResult[]>Functions
| Function | What it does |
|---|---|
search | Runs DoorDash's own store search for a free-text query and returns real, currently-listed stores with DoorDash's own advertised delivery fee, rating and ETA. |
Types
interface DoordashSearchArgs {
query: string; // free text, e.g. "pad thai austin tx" — DoorDash resolves location itself
limit?: number; // default 10, clamped to [1, 30]
}
interface DoordashSearchResult {
name: string;
url: string;
deliveryFee: number | null; // DoorDash's own advertised delivery fee, in dollars
rating: number | null;
etaMinutes: number | null;
}Related
delivery | Food-delivery fee comparison — the capability this provider backs. |