Skip to main content
GET
/
menus
Menu List
curl --request GET \
  --url https://api.atlas.kitchen/admin/v1/menus \
  --header 'X-Api-Key: <api-key>' \
  --header 'X-Merchant-Id: <api-key>'
{
  "object": "menu",
  "items": [
    {
      "id": 123,
      "identifier": "<string>",
      "name": "<string>",
      "brand_id": 123,
      "start_date": "2023-12-25",
      "end_date": "2023-12-25",
      "state": "<string>",
      "lead_time": 123,
      "tag_list": [
        "<string>"
      ],
      "created_at": 123,
      "updated_at": 123
    }
  ]
}

Authorizations

X-Api-Key
string
header
required

Your API key provided during onboarding. Example c2fb5ae6ea99c37d...

X-Merchant-Id
string
header
required

Your numeric merchant ID. Example 1

Response

200 - application/json

All menus for the merchant

object
string
Example:

"menu"

items
object[]