Chowly

Chowly is a restaurant digital-ordering and delivery-integration platform that connects third-party delivery marketplaces (DoorDash, Uber Eats, Grubhub, and 150+ others) and direct online ordering into a restaurant's point-of-sale (POS) system. The Chowly platform injects third-party orders directly into the POS, synchronizes menus across every channel, and manages locations. Its developer surface is a partner-gated POS integration API keyed per location; the most commonly referenced operations are menu retrieval and order creation/retrieval.

4 APIs 0 Features
RestaurantsOnline OrderingDeliveryPOS IntegrationMenu Sync

APIs

Chowly Orders API

Receives third-party marketplace and direct online orders and injects them into the restaurant POS. Public client libraries reference order creation and order retrieval operatio...

Chowly Menu Sync API

Publishes and synchronizes a single source-of-truth menu across 150+ third-party and direct ordering channels (marketed as MenuMatch). Public client libraries reference a menu r...

Chowly Stores API

Restaurant store/location provisioning and management. Each location is keyed by its own Chowly API key, and the platform exposes a Manage Locations surface for enabling channel...

Chowly Integrations API

Connects third-party delivery marketplaces (DoorDash, Uber Eats, Grubhub, and 150+ channels) and 50+ native POS systems (Toast, Square, SpotOn, Clover, and others). Marketplace ...

Collections

Pricing Plans

Chowly Plans Pricing

1 plans

PLANS

Rate Limits

Chowly Rate Limits

1 limits

RATE LIMITS

FinOps

Chowly Finops

FINOPS

Resources

👥
GitHubOrganization
GitHubOrganization
🔗
LinkedIn
LinkedIn
🔗
Website
Website
🔗
Documentation
Documentation
🔗
Plans
Plans
🔗
RateLimits
RateLimits
🔗
FinOps
FinOps

Sources

Raw ↑
opencollection: 1.0.0
info:
  name: Chowly POS Integration API
  version: '1.0'
  description: Partial, best-effort Open Collection for the Chowly POS integration API. Chowly's API is partner-gated and
    provisioned per restaurant location via an API key. The requests below model the operations surfaced by Chowly's public
    API client libraries (get menu, create order, get order) against https://api.chowlyinc.com. Paths and payloads are representative
    and not authoritative; confirm with Chowly partner documentation.
request:
  auth:
    type: apikey
    apikey:
      in: header
      name: Authorization
      value: '{{apiKey}}'
items:
- info:
    name: Orders
    type: folder
  items:
  - info:
      name: Create an order
      type: http
    http:
      method: POST
      url: https://api.chowlyinc.com/orders
      body:
        type: json
        data: '{}'
    docs: Submit an order to be injected into the restaurant POS. Path and payload are representative; the order schema is
      partner-gated and not publicly documented.
  - info:
      name: Retrieve an order
      type: http
    http:
      method: GET
      url: https://api.chowlyinc.com/orders/{orderId}
    docs: Retrieve a previously submitted order by its identifier. Path and response schema are representative and partner-gated.
- info:
    name: Menu
    type: folder
  items:
  - info:
      name: Retrieve the menu
      type: http
    http:
      method: GET
      url: https://api.chowlyinc.com/menu
    docs: Retrieve the menu associated with the API key's location. Path and response schema are representative and partner-gated.