Skip to main content
GET
/
outlets
/
{outlet_id}
/
serving_dates
/
{serving_date}
/
stocks
Get stocks
curl --request GET \
  --url https://api.atlas.kitchen/storefronts/v1/outlets/{outlet_id}/serving_dates/{serving_date}/stocks \
  --header 'X-Channel-Id: <api-key>'
{
  "object": "stock",
  "serving_date": "2026-04-17",
  "outlet_id": 1,
  "items": {
    "1": {
      "item_id": 1,
      "quantity": 25
    },
    "16": {
      "item_id": 16,
      "quantity": 30
    },
    "21": {
      "item_id": 21,
      "quantity": 15
    },
    "22": {
      "item_id": 22,
      "quantity": 50
    },
    "23": {
      "item_id": 23,
      "quantity": 0
    }
  }
}

Documentation Index

Fetch the complete documentation index at: https://help.atlas.kitchen/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

X-Channel-Id
string
header
required

Merchant storefront identifier. Provided during onboarding.

Path Parameters

outlet_id
integer
required
serving_date
string<date>
required
Example:

"2026-04-11"

Response

200 - application/json

Stock levels

object
string
Example:

"stock"

serving_date
string<date>
Example:

"2026-04-17"

outlet_id
integer
Example:

1

items
object

Map of item_id to stock info. Empty means unlimited.