Uber Eats website screenshot

Uber Eats

Uber Eats exposes a family of developer APIs through the Uber Developer Portal that let restaurants, marketplace platforms, POS providers, and logistics partners integrate directly with Uber Eats and Uber Direct. The Uber Eats Marketplace APIs cover store onboarding, store status and hours, menu management, order ingestion and fulfillment, delivery fulfillment (Uber-courier and BYOC), promotions, and reporting. Uber Direct (Deliveries) exposes Uber's courier network for on-demand same-day delivery — quotes, deliveries, courier tracking, proof of delivery, refunds, pick-and-pack, and webhook notifications. All APIs are RESTful, JSON, and gated by OAuth 2.0 client credentials issued from the Uber Developer Portal.

15 APIs 0 Features
Uber EatsUber DirectFood DeliveryLast-Mile LogisticsRestaurantsMenusOrdersFulfillmentCourierOAuth2

APIs

Uber Eats Integration Activation API

The Integration Activation API suite onboards merchant stores onto a partner's Uber Eats integration, connecting Uber store identifiers to a partner platform and enabling subseq...

Uber Eats Store API

The Store API suite manages store status (online/offline), business hours, holiday schedules, and store configuration on Uber Eats. It lets POS and marketplace integrations prog...

Uber Eats Menu API

The Menu API suite lets integrations retrieve and upsert full menus for a store and update individual menu items, modifier groups, prices, suspensions, and availability windows.

Uber Eats Order API

The Order API suite handles inbound Uber Eats orders, including order accept/deny, status updates, item-level adjustments, and cancellation flows. Orders are typically delivered...

Uber Eats Delivery Partner API

The Delivery Partner API suite handles delivery fulfillment by Uber couriers for Uber Eats orders, including courier assignment, tracking, and status updates surfaced back to th...

Uber Eats Delivery BYOC API

The Delivery BYOC ("Bring Your Own Courier") API suite supports merchants and marketplace partners that use their own delivery fleet, exchanging assignment, status, and proof-of...

Uber Eats Promotions API

The Promotions API suite creates and manages marketing campaigns and discounts on Uber Eats stores, including campaign lifecycle, targeting, and reporting.

Uber Eats Reporting API

The Reporting API suite returns transactional, financial, and performance reports for Uber Eats stores, used by merchants and marketplace partners for reconciliation and analytics.

Uber Direct (Deliveries) API

Uber Direct exposes Uber's courier network as a delivery-as-a-service API. Merchants request a delivery (or quote), Uber dispatches a courier, and the merchant receives webhook ...

Uber Direct Organizations API

The Organizations API lets Uber Direct partners manage parent organizations and child accounts (e.g. multi-tenant merchants), including provisioning of API credentials and store...

Uber Direct Courier Pick & Pack API

The Courier Pick & Pack API supports shop-and-pay style deliveries where the courier shops on behalf of the customer, including item lists, substitutions, and shopping progress ...

Uber Direct Refund API

The Refund API supports refund requests on completed Uber Direct deliveries, including the corresponding webhook events that notify merchants of refund outcomes.

Uber Direct Business Location Management API

The Business Location Management API administers physical pickup locations associated with Uber Direct accounts, used for routing and dispatch.

Uber Eats & Direct Webhooks

Both Uber Eats and Uber Direct send webhook events for order lifecycle, courier updates, refunds, shopping progress, and delivery status. Partners register webhook URLs in the U...

Uber OAuth 2.0

Uber APIs are authenticated using OAuth 2.0. Server-to-server integrations use the client_credentials grant; user-facing integrations use the authorization_code grant with PKCE....

Collections

GraphQL

Uber Eats GraphQL Schema

This conceptual GraphQL schema represents the Uber Eats platform API domain, covering restaurant and store management, menus, orders, delivery fulfillment, promotions, customer ...

GRAPHQL

Pricing Plans

Uber Eats Plans Pricing

6 plans

PLANS

Rate Limits

Uber Eats Rate Limits

2 limits

RATE LIMITS

FinOps

Semantic Vocabularies

Uber Eats Eats Context

5 classes · 26 properties

JSON-LD

Uber Eats Uber Direct Context

8 classes · 58 properties

JSON-LD

API Governance Rules

Uber Eats API Rules

27 rules · 7 errors 16 warnings 4 info

SPECTRAL

JSON Structure

Eats Menu Item Structure

5 properties

JSON STRUCTURE

Eats Menu Structure

4 properties

JSON STRUCTURE

Eats Order Structure

9 properties

JSON STRUCTURE

Eats Store Status Structure

3 properties

JSON STRUCTURE

Eats Store Structure

7 properties

JSON STRUCTURE

Uber Direct Delivery Quote Req Structure

14 properties

JSON STRUCTURE

Uber Direct Delivery Quote Resp Structure

10 properties

JSON STRUCTURE

Uber Direct Delivery Req Structure

18 properties

JSON STRUCTURE

Uber Direct Delivery Resp Structure

19 properties

JSON STRUCTURE

Uber Direct Manifest Item Structure

7 properties

JSON STRUCTURE

Uber Direct Podreq Structure

2 properties

JSON STRUCTURE

Uber Direct Podresp Structure

1 properties

JSON STRUCTURE

Uber Direct Update Delivery Req Structure

8 properties

JSON STRUCTURE

Example Payloads

Eats Menu Example

4 fields

EXAMPLE

Eats Menu Item Example

5 fields

EXAMPLE

Eats Order Example

9 fields

EXAMPLE

Eats Store Example

7 fields

EXAMPLE

Eats Store Status Example

3 fields

EXAMPLE

Uber Direct Podreq Example

2 fields

EXAMPLE

Uber Direct Podresp Example

1 fields

EXAMPLE

Resources

🔗
Website
Website
👥
GitHubOrganization
GitHubOrganization
📦
Uber Direct JavaScript/TypeScript SDK
SDKs
🌐
DeveloperPortal
DeveloperPortal
🔗
Documentation
Documentation
🔗
UberEatsDocs
UberEatsDocs
🔗
UberDirectDocs
UberDirectDocs
🔑
Authentication
Authentication
🔗
Webhooks
Webhooks
🔗
Dashboard
Dashboard
📜
TermsOfService
TermsOfService
📰
Blog
Blog
🟢
Status
Status
🔗
SpectralRules
SpectralRules
🔗
Vocabulary
Vocabulary
🔗
Plans
Plans
🔗
RateLimits
RateLimits
🔗
FinOps
FinOps

Sources

Raw ↑
opencollection: 1.0.0
info:
  name: Uber Eats Marketplace API
  version: v1
request:
  auth:
    type: oauth2
    flow: client_credentials
    accessTokenUrl: https://auth.uber.com/oauth/v2/token
    credentials:
      clientId: '{{clientId}}'
      clientSecret: '{{clientSecret}}'
items:
- info:
    name: Uber Eats Get Stores
    type: http
  http:
    method: GET
    url: https://api.uber.com/eats/stores
  docs: Uber Eats Get Stores
- info:
    name: Uber Eats Get Store Details
    type: http
  http:
    method: GET
    url: https://api.uber.com/eats/stores/:store_id
    params:
    - name: store_id
      value: ''
      type: path
  docs: Uber Eats Get Store Details
- info:
    name: Uber Eats Set Store Status
    type: http
  http:
    method: POST
    url: https://api.uber.com/eats/store/:store_id/status
    params:
    - name: store_id
      value: ''
      type: path
    body:
      type: json
      data: '{}'
  docs: Uber Eats Set Store Status
- info:
    name: Uber Eats Retrieve Menu
    type: http
  http:
    method: GET
    url: https://api.uber.com/eats/stores/:store_id/menus
    params:
    - name: store_id
      value: ''
      type: path
  docs: Uber Eats Retrieve Menu
- info:
    name: Uber Eats Upsert Menu
    type: http
  http:
    method: PUT
    url: https://api.uber.com/eats/stores/:store_id/menus
    params:
    - name: store_id
      value: ''
      type: path
    body:
      type: json
      data: '{}'
  docs: Uber Eats Upsert Menu
- info:
    name: Uber Eats Update Menu Item (price, Suspension, Availability)
    type: http
  http:
    method: POST
    url: https://api.uber.com/eats/stores/:store_id/menus/items/:item_id
    params:
    - name: store_id
      value: ''
      type: path
    - name: item_id
      value: ''
      type: path
    body:
      type: json
      data: '{}'
  docs: Uber Eats Update Menu Item (price, Suspension, Availability)
- info:
    name: Uber Eats Get Created Orders for a Store
    type: http
  http:
    method: GET
    url: https://api.uber.com/eats/stores/:store_id/created-orders
    params:
    - name: store_id
      value: ''
      type: path
  docs: Uber Eats Get Created Orders for a Store
- info:
    name: Uber Eats Get Order Details
    type: http
  http:
    method: GET
    url: https://api.uber.com/eats/order/:order_id
    params:
    - name: order_id
      value: ''
      type: path
  docs: Uber Eats Get Order Details
- info:
    name: Uber Eats Accept an Order Into the POS
    type: http
  http:
    method: POST
    url: https://api.uber.com/eats/orders/:order_id/accept_pos_order
    params:
    - name: order_id
      value: ''
      type: path
    body:
      type: json
      data: '{}'
  docs: Uber Eats Accept an Order Into the POS
- info:
    name: Uber Eats Cancel an Order
    type: http
  http:
    method: POST
    url: https://api.uber.com/eats/orders/:order_id/cancel
    params:
    - name: order_id
      value: ''
      type: path
    body:
      type: json
      data: '{}'
  docs: Uber Eats Cancel an Order
bundled: true