List menu items

GET/menus/{menu_key}/items

Returns every item in the menu, in display order, in a single response while preserving the standard collection response format.

AuthorizationBearer <token>

Autonomous mode: the API credential secret, sent as a bearer token. Credential secrets are identified by a fixed prefix.

In: header

Path Parameters

menu_key*string

Response Body

application/json

application/json

application/json

application/json

curl -X GET "https://example.com/menus/string/items"
{  "data": [    {      "destination": {        "embed": "string",        "product_id": "string",        "shortcut": "string",        "showcase_id": "string",        "url": "string"      },      "id": "string",      "kind": "shortcut",      "label": "string",      "object": "menu_item",      "position": 0,      "revision": "string",      "target": "_self",      "visible": true    }  ],  "page": {    "limit": 1,    "next_cursor": "string",    "prev_cursor": "string"  }}