BETTERMENU
Studio

List Recipes

List all recipes — browse recipes, see my recipes, view all recipes.

Use this to answer: "show me my recipes", "list all recipes", "what recipes do I have?", "find my draft recipes"

Returns recipes the caller has access to, filtered by organization. Deleted recipes are excluded. Supports status filtering (draft, published, archived) and cursor-based pagination.

Related endpoints:

  • createRecipe — start a new recipe
  • getRecipe — get full details for a single recipe
GET
/studio/recipes

Authorization

BearerAuth
AuthorizationBearer <token>

JWT Bearer token authentication

In: header

Query Parameters

status?|

Filter by recipe lifecycle status (draft, published, archived)

limit?integer

Maximum number of recipes to return (1-100)

Default10
Range1 <= value <= 100
cursor?|

Pagination cursor from a previous response's meta.cursor field

Response Body

application/json

application/json

curl -X GET "https://loading/studio/recipes"
{
  "data": [
    {
      "id": "string",
      "name": "string",
      "status": "draft",
      "country": "US",
      "regulatory_authority": "US_FDA",
      "demographic": "adults_and_children_over_4",
      "has_nutrition": true,
      "ingredient_count": 0,
      "created_at": "string",
      "updated_at": "string"
    }
  ],
  "meta": {
    "version": "string",
    "request_id": "string",
    "timestamp": "string",
    "cursor": "string",
    "has_more": true
  }
}
{
  "detail": [
    {
      "loc": [
        "string"
      ],
      "msg": "string",
      "type": "string",
      "input": null,
      "ctx": {}
    }
  ]
}