Menu details
curl --request GET \
--url https://api.atlas.kitchen/admin/v1/menus/{id} \
--header 'X-Api-Key: <api-key>' \
--header 'X-Merchant-Id: <api-key>'import requests
url = "https://api.atlas.kitchen/admin/v1/menus/{id}"
headers = {
"X-Api-Key": "<api-key>",
"X-Merchant-Id": "<api-key>"
}
response = requests.get(url, headers=headers)
print(response.text)const options = {
method: 'GET',
headers: {'X-Api-Key': '<api-key>', 'X-Merchant-Id': '<api-key>'}
};
fetch('https://api.atlas.kitchen/admin/v1/menus/{id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.atlas.kitchen/admin/v1/menus/{id}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"X-Api-Key: <api-key>",
"X-Merchant-Id: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.atlas.kitchen/admin/v1/menus/{id}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("X-Api-Key", "<api-key>")
req.Header.Add("X-Merchant-Id", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.atlas.kitchen/admin/v1/menus/{id}")
.header("X-Api-Key", "<api-key>")
.header("X-Merchant-Id", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.atlas.kitchen/admin/v1/menus/{id}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["X-Api-Key"] = '<api-key>'
request["X-Merchant-Id"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"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,
"sections": [
{
"section_id": 123,
"identifier": "<string>",
"name": "<string>",
"description": "<string>",
"display_order": 123,
"image_url": "<string>",
"sub_sections": [
{
"id": 123,
"identifier": "<string>",
"name": "<string>",
"description": "<string>",
"display_order": 123,
"image_url": "<string>",
"products": [
{
"id": 123,
"name": "<string>",
"sku": "<string>",
"description": "<string>",
"price_cents": 123,
"currency": "<string>",
"brand_id": 123,
"display_order": 123,
"is_configurable": true,
"product_tags": [
"<string>"
],
"kitchen_tags": [
"<string>"
],
"horizontal_image_url": "<string>",
"report_category": "<string>",
"sugar_level": "<string>",
"nutri_grade": "<string>",
"archived_at": 123,
"item_modifier_groups": [
{
"id": 123,
"display_order": 123,
"is_fixed": true,
"archived": true,
"selection_required_min_override": 123,
"selection_required_max_override": 123,
"hide_thumbnails": true,
"modifier_group": {
"id": 123,
"identifier": "<string>",
"name": "<string>",
"selection_required_min": 123,
"selection_required_max": 123,
"max_quantity_per_modifier": 123,
"hide_thumbnails": true,
"modifiers": [
{
"id": 123,
"display_order": 123,
"default_quantity": 123,
"price_cents_override": 123,
"item": {
"id": 123,
"name": "<string>",
"price_cents": 123,
"description": "<string>",
"type": "<string>",
"product_tags": [
"<string>"
],
"kitchen_tags": [
"<string>"
]
}
}
]
}
}
]
}
]
}
],
"products": [
{
"id": 123,
"name": "<string>",
"sku": "<string>",
"description": "<string>",
"price_cents": 123,
"currency": "<string>",
"brand_id": 123,
"display_order": 123,
"is_configurable": true,
"product_tags": [
"<string>"
],
"kitchen_tags": [
"<string>"
],
"horizontal_image_url": "<string>",
"report_category": "<string>",
"sugar_level": "<string>",
"nutri_grade": "<string>",
"archived_at": 123,
"item_modifier_groups": [
{
"id": 123,
"display_order": 123,
"is_fixed": true,
"archived": true,
"selection_required_min_override": 123,
"selection_required_max_override": 123,
"hide_thumbnails": true,
"modifier_group": {
"id": 123,
"identifier": "<string>",
"name": "<string>",
"selection_required_min": 123,
"selection_required_max": 123,
"max_quantity_per_modifier": 123,
"hide_thumbnails": true,
"modifiers": [
{
"id": 123,
"display_order": 123,
"default_quantity": 123,
"price_cents_override": 123,
"item": {
"id": 123,
"name": "<string>",
"price_cents": 123,
"description": "<string>",
"type": "<string>",
"product_tags": [
"<string>"
],
"kitchen_tags": [
"<string>"
]
}
}
]
}
}
]
}
]
}
]
}{
"type": "<string>",
"message": "<string>",
"error_hash": {}
}Returns full menu hierarchy with sections, items, modifier groups, and modifiers.
GET
/
menus
/
{id}
Menu details
curl --request GET \
--url https://api.atlas.kitchen/admin/v1/menus/{id} \
--header 'X-Api-Key: <api-key>' \
--header 'X-Merchant-Id: <api-key>'import requests
url = "https://api.atlas.kitchen/admin/v1/menus/{id}"
headers = {
"X-Api-Key": "<api-key>",
"X-Merchant-Id": "<api-key>"
}
response = requests.get(url, headers=headers)
print(response.text)const options = {
method: 'GET',
headers: {'X-Api-Key': '<api-key>', 'X-Merchant-Id': '<api-key>'}
};
fetch('https://api.atlas.kitchen/admin/v1/menus/{id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.atlas.kitchen/admin/v1/menus/{id}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"X-Api-Key: <api-key>",
"X-Merchant-Id: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.atlas.kitchen/admin/v1/menus/{id}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("X-Api-Key", "<api-key>")
req.Header.Add("X-Merchant-Id", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.atlas.kitchen/admin/v1/menus/{id}")
.header("X-Api-Key", "<api-key>")
.header("X-Merchant-Id", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.atlas.kitchen/admin/v1/menus/{id}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["X-Api-Key"] = '<api-key>'
request["X-Merchant-Id"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"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,
"sections": [
{
"section_id": 123,
"identifier": "<string>",
"name": "<string>",
"description": "<string>",
"display_order": 123,
"image_url": "<string>",
"sub_sections": [
{
"id": 123,
"identifier": "<string>",
"name": "<string>",
"description": "<string>",
"display_order": 123,
"image_url": "<string>",
"products": [
{
"id": 123,
"name": "<string>",
"sku": "<string>",
"description": "<string>",
"price_cents": 123,
"currency": "<string>",
"brand_id": 123,
"display_order": 123,
"is_configurable": true,
"product_tags": [
"<string>"
],
"kitchen_tags": [
"<string>"
],
"horizontal_image_url": "<string>",
"report_category": "<string>",
"sugar_level": "<string>",
"nutri_grade": "<string>",
"archived_at": 123,
"item_modifier_groups": [
{
"id": 123,
"display_order": 123,
"is_fixed": true,
"archived": true,
"selection_required_min_override": 123,
"selection_required_max_override": 123,
"hide_thumbnails": true,
"modifier_group": {
"id": 123,
"identifier": "<string>",
"name": "<string>",
"selection_required_min": 123,
"selection_required_max": 123,
"max_quantity_per_modifier": 123,
"hide_thumbnails": true,
"modifiers": [
{
"id": 123,
"display_order": 123,
"default_quantity": 123,
"price_cents_override": 123,
"item": {
"id": 123,
"name": "<string>",
"price_cents": 123,
"description": "<string>",
"type": "<string>",
"product_tags": [
"<string>"
],
"kitchen_tags": [
"<string>"
]
}
}
]
}
}
]
}
]
}
],
"products": [
{
"id": 123,
"name": "<string>",
"sku": "<string>",
"description": "<string>",
"price_cents": 123,
"currency": "<string>",
"brand_id": 123,
"display_order": 123,
"is_configurable": true,
"product_tags": [
"<string>"
],
"kitchen_tags": [
"<string>"
],
"horizontal_image_url": "<string>",
"report_category": "<string>",
"sugar_level": "<string>",
"nutri_grade": "<string>",
"archived_at": 123,
"item_modifier_groups": [
{
"id": 123,
"display_order": 123,
"is_fixed": true,
"archived": true,
"selection_required_min_override": 123,
"selection_required_max_override": 123,
"hide_thumbnails": true,
"modifier_group": {
"id": 123,
"identifier": "<string>",
"name": "<string>",
"selection_required_min": 123,
"selection_required_max": 123,
"max_quantity_per_modifier": 123,
"hide_thumbnails": true,
"modifiers": [
{
"id": 123,
"display_order": 123,
"default_quantity": 123,
"price_cents_override": 123,
"item": {
"id": 123,
"name": "<string>",
"price_cents": 123,
"description": "<string>",
"type": "<string>",
"product_tags": [
"<string>"
],
"kitchen_tags": [
"<string>"
]
}
}
]
}
}
]
}
]
}
]
}{
"type": "<string>",
"message": "<string>",
"error_hash": {}
}Authorizations
Your API key provided during onboarding. Example c2fb5ae6ea99c37d...
Your numeric merchant ID. Example 1
Path Parameters
Was this page helpful?
⌘I