Skip to main content
GET
/
tabs
/
{websiteId}
/
recipes
Recipes
curl --request GET \
  --url https://api.service.getjusto.com/v3/tabs/{websiteId}/recipes \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": {
    "items": [
      {
        "_id": "rec-4c48bf33-1411-4c3f-adac-db39b4631cb8",
        "name": "Sal",
        "type": "sale",
        "externalId": "ing_external_id",
        "ingredientInputs": [
          {
            "ingredientId": "ing-1234567890",
            "quantity": 1,
            "unitOfMeasurement": "gr",
            "stockRoomId": "t-sri-asdasd"
          }
        ],
        "recipeInputs": [
          {
            "recipeId": "rec-1234567890",
            "quantity": 1
          }
        ],
        "ingredientOutputs": [
          {
            "ingredientId": "ing-1234567890",
            "quantity": 1,
            "unitOfMeasurement": "gr"
          }
        ]
      }
    ],
    "hasNextPage": true,
    "hasPreviousPage": true,
    "totalPages": 123,
    "totalCount": 123
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

websiteId
string
required

Response

The OpenAPI spec

success
boolean
Example:

true

data
object