Studio
Get Recipe
Get a recipe by ID — view recipe details, check recipe status, see recipe info.
Use this to answer: "show me my recipe", "get recipe details", "what's the status of my recipe", "does my recipe have nutrition?"
Returns the recipe with its current metadata, ingredient count,
and nutrition status. has_nutrition is true only when computed
nutrition data exists — there is no stale state.
Related endpoints:
- getRecipeIngredients — see the full ingredient list
- getRecipeNutrition — get nutrition totals
- getRecipeAuditTrail — see what changed
Authorization
BearerAuth AuthorizationBearer <token>
JWT Bearer token authentication
In: header
Path Parameters
recipe_id*string
Unique recipe identifier
Response Body
application/json
application/json
curl -X GET "https://loading/studio/recipes/string"{
"data": {
"id": "string",
"org_id": "string",
"name": "string",
"country": "US",
"regulatory_authority": "US_FDA",
"demographic": "adults_and_children_over_4",
"status": "draft",
"ingredient_count": 0,
"has_nutrition": true,
"created_at": "string",
"updated_at": "string",
"actions": {
"can_modify": true,
"can_publish": true,
"can_archive": true,
"can_delete": true
}
},
"meta": {
"version": "string",
"request_id": "string",
"timestamp": "string"
}
}{
"detail": [
{
"loc": [
"string"
],
"msg": "string",
"type": "string",
"input": null,
"ctx": {}
}
]
}