Skip to main content
Get Menu API

Retrieve menu details using a specific menu_id.

Updated over a year ago

Overview

Retrieve menu details using a specific menu_id.

Request

Endpoint:

/v1/menu

Method:

GET

Headers:

Authorization: <Your-API-Key>

When forming your request, include a JSON payload with the specific menu_id you're interested in:

{
"menu_id": "your_menu_id"
}

Replace your_menu_id with the actual ID of the menu you're inquiring about.

Response

Upon submitting the request, the API will provide details related to the given menu.

Example Request Body

{
"menu_id": "63d2bc454f7694c2b366a87d"
}

Expected Response

{
"display_name": "Lunch Menu",
"header_text": "",
"footer_text": "Before placing your order, please inform ... "
"section_links":
[
"645ed94355ef4a74c854fc92",
"988ed94365aa4a74c30cd832"
]
}

Did this answer your question?