Fiest Developers

Find menu items

Returns bounded current catalog items with public item and category UUIDs.

GET/v1/restaurants/{restaurantId}/menu-items

Returns bounded current catalog items with public item and category UUIDs. Database sequence IDs are not exposed. Organization-boundary tokens also require fiest.organization.read.

Quick request

curl -X GET "https://example.com/v1/restaurants/11111111-1111-4111-8111-111111111111/menu-items" \  -H "Authorization: Bearer $FIEST_ACCESS_TOKEN"
{  "data": {    "restaurantId": "11111111-1111-4111-8111-111111111111",    "currency": "EUR",    "items": [      {        "menuItemPublicId": "67fb6fb2-0f46-455b-934e-25707b77be08",        "name": "Margherita",        "categoryPublicId": "af16a392-f8a1-47b4-849f-4d707001e9b1",        "categoryName": "Pizza",        "priceMinor": 1350,        "availability": "available",        "productType": "food",        "openPrice": false      }    ],    "truncated": false  }}

Authorization

fiestOAuth fiest.restaurant.read, fiest.menu.read
AuthorizationBearer <token>

OAuth 2.1 authorization code with PKCE. Partner clients and redirect URIs must be approved by Fiest before use.

In: header

Scope: fiest.restaurant.read, fiest.menu.read

Path Parameters

restaurantId*string

A restaurant identifier returned by the authorized restaurant list.

Formatuuid

Query Parameters

query?string
Length1 <= length <= 100
category_name?string
Length1 <= length <= 100
availability?string
Default"all"

Value in

  • "available"
  • "hidden"
  • "all"
limit?integer
Range1 <= value <= 50
Default25

Response Body

application/json

application/json

application/json

application/json

application/json

application/json

application/json