Studio
List Recipes
List recipes accessible to authenticated member.
Business Rules:
- Member must belong to the organization (org-level check)
- Returns recipes where member has explicit collaborator access
- Recipes scoped to member's organization
- Filters soft-deleted recipes automatically
- Optional status filter (draft, published, archived)
- Cursor-based pagination (limit 1-100, default 10)
Authorization
BearerAuth AuthorizationBearer <token>
JWT Bearer token authentication
In: header
Query Parameters
status?|
limit?integer
Default
10Range
1 <= value <= 100cursor?|
Response Body
application/json
application/json
curl -X GET "https://loading/studio/recipes"{
"data": [
{
"id": "string",
"name": "string",
"status": "draft",
"country": "US",
"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"
}
]
}