Skip to main content
GET
/
outlets
/
{outlet_id}
/
serving_dates
/
{serving_date}
/
availabilities
Get availabilities
curl --request GET \
  --url https://api.atlas.kitchen/storefronts/v1/outlets/{outlet_id}/serving_dates/{serving_date}/availabilities \
  --header 'X-Channel-Id: <api-key>'
{
  "outlet_id": 1,
  "fulfilment_type": "delivery",
  "timeslot_start": 32400,
  "timeslot_end": 50400,
  "serving_date": "2026-04-17",
  "availabilities": {
    "sections": {
      "3": {
        "hidden": false,
        "disabled": true,
        "disabled_reason": "Available for dinner only"
      }
    },
    "items": {
      "18": {
        "hidden": true,
        "disabled": false,
        "disabled_reason": null
      }
    }
  },
  "lead_times": {}
}

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"

Query Parameters

timeslot_start
integer
required

Timeslot start (seconds since midnight)

timeslot_end
integer
required

Timeslot end (seconds since midnight)

fulfilment_type
enum<string>
required
Available options:
delivery,
pickup

Response

200 - application/json

Availability flags per section and item

outlet_id
integer
Example:

1

serving_date
string<date>
Example:

"2026-04-17"

fulfilment_type
string
Example:

"delivery"

timeslot_start
integer
Example:

32400

timeslot_end
integer
Example:

50400

availabilities
object
lead_times
object