---
title: "Get full menu"
method: GET
path: "/menu/{locale}"
tags: ["Menu"]
---

# Get full menu

`GET /menu/{locale}`

Returns the complete menu structure with categories, subcategories, and items.

## Path parameters

- `locale` integer, required

## Query parameters

- `lang` string

## Response `200`

Full menu tree

- object
  - `success` boolean
  - `data` MenuCategory[]
    - `category_id` integer
    - `name` string
    - `description` string, nullable
    - `order_position` integer
    - `items` MenuItem[]
      - `id` integer
      - `category_id` integer
      - `name` string
      - `is_vegetarian` boolean
      - `is_low_calorie` boolean
      - `is_spicy` boolean
      - `is_gluten_free` boolean
      - `price` number, float
      - `image` string, nullable
      - `weight` string, nullable
      - `volume` string, nullable
      - `alcohol` boolean
      - `description` string, nullable
      - `available_for_order` boolean
      - `is_adult` boolean
      - `options` object[]
    - `subcategories` MenuCategory[]

## Other responses

- `403` — API key not authorized for this locale or missing required scope

---

[API](https://skmtc.dev/myrest/apis/myrest-public-api.md) · [All operations](https://skmtc.dev/myrest/apis/myrest-public-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/myrest/myrest-public-api/revisions/70905e6e4284/schema)
