# menu Get a specific link list/menu by handle ## Authentication > **Authentication Required**: Secret API key with scope `navigation:read` ## Query Structure ```graphql { menu(handle: String!) { handle levels links title } } ``` ## Arguments | Argument | Type | Required | Description | |----------|------|----------|-------------| | handle | String | Yes | The handle of the link list to retrieve | ## Return Type [Menu](/reference/storefront/1.3.0/objects/menu) - A navigation menu (link list) including its handle, title, and contained links. ## Example ```graphql { menu(handle: "main-navigation") { handle title levels links { title url } } } ``` ## Related Types - [Menu](/reference/storefront/1.3.0/objects/menu)