doordash Reports API

Create report requests and retrieve report download links for financial, operations, menu, and feedback data.

Operations 2

POST /reports DoorDash Create a Report Request #

Documentation

Specifications

Code Examples

Other Resources

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/doordash-reports-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

doordash-reports-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: DoorDash Drive Classic Addresses Reports API
  description: The DoorDash Drive Classic API is the legacy version of the Drive API, designed for large enterprises and middleware providers who require extensive configuration and customizability for their delivery integrations. It provides endpoints for managing businesses, stores, and deliveries through DoorDash's logistics platform. While still supported, DoorDash recommends new integrations use the newer Drive API (v2) instead.
  version: '1.0'
  contact:
    name: DoorDash Developer Support
    url: https://developer.doordash.com/en-US/
  termsOfService: https://www.doordash.com/terms/
servers:
- url: https://openapi.doordash.com/drive/v1
  description: Production Server
security:
- bearerAuth: []
tags:
- name: Reports
  description: Create report requests and retrieve report download links for financial, operations, menu, and feedback data.
paths:
  /reports:
    post:
      operationId: createReport
      summary: DoorDash Create a Report Request
      description: Submits a request to generate a report. Reports are processed asynchronously. A successful response returns a report ID that can be used to check the status and retrieve the download link. A webhook notification is sent when the report is ready.
      tags:
      - Reports
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ReportRequest'
            examples:
              CreateReportRequestExample:
                summary: Default createReport request
                x-microcks-default: true
                value:
                  report_type: financial
                  start_date: '2026-06-02'
                  end_date: '2026-06-02'
                  store_ids:
                  - example
      responses:
        '202':
          description: Report request accepted for processing
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ReportRequestResponse'
              examples:
                CreateReport202Example:
                  summary: Default createReport 202 response
                  x-microcks-default: true
                  value:
                    report_id: D-12345
                    status: PENDING
        '400':
          description: Invalid report parameters
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
              examples:
                CreateReport400Example:
                  summary: Default createReport 400 response
                  x-microcks-default: true
                  value:
                    message: example
                    code: ABC123
        '401':
          description: Authentication failed
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
              examples:
                CreateReport401Example:
                  summary: Default createReport 401 response
                  x-microcks-default: true
                  value:
                    message: example
                    code: ABC123
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
  /reports/{report_id}/reportlink:
    get:
      operationId: getReportLink
      summary: DoorDash Get Report Download Link
      description: Retrieves the status and download link for a previously requested report. When the report generation is complete, the status will be SUCCEEDED and a download link will be provided. The download link is temporary and should be used promptly.
      tags:
      - Reports
      parameters:
      - $ref: '#/components/parameters/ReportId'
      responses:
        '200':
          description: Report status and link retrieved
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ReportLinkResponse'
              examples:
                GetReportLink200Example:
                  summary: Default getReportLink 200 response
                  x-microcks-default: true
                  value:
                    report_id: D-12345
                    status: PENDING
                    download_url: https://example.com/path/abc123
                    report_type: financial
                    created_at: '2026-06-02T14:30:00Z'
                    completed_at: '2026-06-02T14:30:00Z'
        '401':
          description: Authentication failed
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
              examples:
                GetReportLink401Example:
                  summary: Default getReportLink 401 response
                  x-microcks-default: true
                  value:
                    message: example
                    code: ABC123
        '404':
          description: Report not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
              examples:
                GetReportLink404Example:
                  summary: Default getReportLink 404 response
                  x-microcks-default: true
                  value:
                    message: example
                    code: ABC123
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
components:
  schemas:
    ReportLinkResponse:
      type: object
      properties:
        report_id:
          type: string
          description: The unique identifier for the report.
          example: D-12345
        status:
          type: string
          description: The current processing status of the report.
          enum:
          - PENDING
          - PROCESSING
          - SUCCEEDED
          - FAILED
          example: PENDING
        download_url:
          type: string
          format: uri
          description: A temporary URL to download the report. Only present when status is SUCCEEDED.
          example: https://example.com/path/abc123
        report_type:
          type: string
          description: The type of report that was generated.
          enum:
          - financial
          - operations
          - menu
          - feedback
          example: financial
        created_at:
          type: string
          format: date-time
          description: When the report request was created.
          example: '2026-06-02T14:30:00Z'
        completed_at:
          type: string
          format: date-time
          description: When the report generation was completed. Only present when status is SUCCEEDED.
          example: '2026-06-02T14:30:00Z'
    ReportRequestResponse:
      type: object
      properties:
        report_id:
          type: string
          description: The unique identifier for the report request. Use this to check status and retrieve the download link.
          example: D-12345
        status:
          type: string
          description: The current processing status of the report.
          enum:
          - PENDING
          - PROCESSING
          - SUCCEEDED
          - FAILED
          example: PENDING
    Error:
      type: object
      properties:
        message:
          type: string
          description: A human-readable error message.
          example: example
        code:
          type: string
          description: A machine-readable error code.
          example: ABC123
    ReportRequest:
      type: object
      required:
      - report_type
      - start_date
      - end_date
      properties:
        report_type:
          type: string
          description: The type of report to generate.
          enum:
          - financial
          - operations
          - menu
          - feedback
          example: financial
        start_date:
          type: string
          format: date
          description: The start date for the report period in YYYY-MM-DD format.
          example: '2026-06-02'
        end_date:
          type: string
          format: date
          description: The end date for the report period in YYYY-MM-DD format.
          example: '2026-06-02'
        store_ids:
          type: array
          description: Optional list of store IDs to filter the report by specific stores.
          items:
            type: string
          example:
          - example
  parameters:
    ReportId:
      name: report_id
      in: path
      required: true
      description: The unique identifier for the report, returned when the report request was created.
      schema:
        type: string
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: JWT token signed with your DoorDash developer credentials.
externalDocs:
  description: DoorDash Drive Classic API Documentation
  url: https://developer.doordash.com/en-US/docs/drive_classic/overview/about_drive_classic/