Skip to main content
POST
/
cart
Create cart
curl --request POST \
  --url https://api.atlas.kitchen/storefronts/v1/cart \
  --header 'X-Channel-Id: <api-key>' \
  --header 'X-Session-Id: <api-key>'
{
  "id": 2,
  "channel_id": 1,
  "outlet_id": null,
  "brand_id": null,
  "user_id": null,
  "timeslot_start": null,
  "timeslot_end": null,
  "timeslot_type": "available_timeslots",
  "fulfilment_type": "delivery",
  "notes": null,
  "is_gift": false,
  "recipient_name": null,
  "recipient_contact_number": null,
  "gift_message": null,
  "promo_code": null,
  "is_checked_out": false,
  "use_points": false,
  "serving_date": "2026-04-16",
  "timeslot_range": null,
  "contact_email": null,
  "contact_name": null,
  "contact_number": null,
  "address_line1": null,
  "address_line2": null,
  "address_longitude": null,
  "address_latitude": null,
  "postal_code": null,
  "brand": null,
  "cart_items": []
}

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.

X-Session-Id
string
header
required

Diner session identifier. Created by GET /channel and returned in the X-Session-Id response header.

Response

200 - application/json

Cart object

id
integer
channel_id
integer
outlet_id
integer | null
brand_id
integer | null
user_id
integer | null
timeslot_start
integer | null
timeslot_end
integer | null
timeslot_type
enum<string>
Available options:
asap,
available_timeslots
timeslot_range
string | null
fulfilment_type
enum<string>
Available options:
delivery,
pickup
serving_date
string<date>
contact_name
string | null
contact_email
string | null
contact_number
string | null
address_line1
string | null
address_line2
string | null
address_latitude
number<double> | null
address_longitude
number<double> | null
postal_code
string | null
notes
string | null
is_gift
boolean
recipient_name
string | null
recipient_contact_number
string | null
gift_message
string | null
promo_code
string | null
is_checked_out
boolean
use_points
boolean
brand
object
cart_items
object[]