Atlas Open API
  1. Menus
Atlas Open API
  • Introduction
  • Authentication
  • Date and Time
  • Errors
  • Webhooks
    • Incoming
      • Reservations (BETA)
    • Outgoing
      • Menus, Stocks, Orders, Outlets, Users
  • Menus
    • Menu List
      GET
    • Menu Details
      GET
  • Orders
    • Create Order
      POST
    • Order Details
      GET
    • Update Order
      PATCH
  • Stocks
    • Outlet Stocks
      GET
  • Users
    • User Sync
      GET
  1. Menus

Menu List

GET
/menus
Returns the list of menus available for the merchant.

Request

Authorization
Add parameter in header
X-Api-Key
Example:
X-Api-Key: ********************
Header Params
X-Merchant-ID
stringΒ 
required
Your merchant ID

Request samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.atlas.kitchen/menus' \
--header 'X-Merchant-ID;' \
--header 'X-Api-Key;'

Responses

🟒200ListResponse
application/json
Body
object
stringΒ 
required
Specifies the object type of the items (menu)
items
arrayΒ [object {11}]Β 
required
id
integerΒ 
required
The id of the menu; used in menu-related API requests
identifier
stringΒ 
required
Contains the readable identifier set in the Atlas Merchant Portal
brand_id
integerΒ 
required
Contains the id of the brand this menu belongs to
start_date
stringΒ 
required
Start date for when the menu will be available to diners. Format: YYYY-MM-DD
end_date
stringΒ 
required
End date for when the menu will be available to diners. Format: YYYY-MM-DD
name
stringΒ 
required
Name of the menu
state
enum<string>Β 
required
Contains the publishing state of the menu.
Allowed values:
publisheddraft
tag_list
array[string]
required
Contains the tags for the menu
lead_time
integerΒ 
required
created_at
integerΒ 
required
Timestamp on object creation. Format: unix time
updated_at
integerΒ 
required
Timestamp on last object update. Format: unix time
Example
{
  "object": "menu",
  "items": [
    {
      "id": 8921,
      "identifier": "atlas-kitchen-2024",
      "brand_id": 231,
      "start_date": "2024-01-01",
      "end_date": "2024-12-31",
      "name": "2024 Menu",
      "state": "published",
      "tag_list": [],
      "lead_time": null,
      "created_at": 1723628097,
      "updated_at": 1723780269
    },
    {
      "id": 8922,
      "identifier": "atlas-kitchen-christmas-specials",
      "brand_id": 231,
      "start_date": "2024-12-01",
      "end_date": "2025-01-15",
      "name": "Christmas Specials",
      "state": "draft",
      "tag_list": [
        "christmas"
      ],
      "lead_time": null,
      "created_at": 1723628097,
      "updated_at": 1723780269
    },
    {
      "id": 8924,
      "identifier": "atlas-kitchen-grabfood",
      "brand_id": 231,
      "start_date": "2024-01-01",
      "end_date": "2024-12-31",
      "name": "Grabfood Menu",
      "state": "published",
      "tag_list": [
        "grabfood",
        "delivery"
      ],
      "lead_time": null,
      "created_at": 1723628097,
      "updated_at": 1723780269
    }
  ]
}
πŸ”΄500Server Error
🟠401Unauthorized
Previous
Menus, Stocks, Orders, Outlets, Users
Next
Menu Details
Built with