Response model for fetching multiple recipes.
Parameters
Output
Encoding
application/jsonnextCursor
string
Required
No description available.
recipes
array
Required
No description available.
Try It
Requests are sent directly from your browser. Some servers may block requests due to CORS.
View raw schema
{
"type": "query",
"output": {
"schema": {
"type": "object",
"required": [
"recipes",
"nextCursor"
],
"properties": {
"recipes": {
"type": "array",
"items": {
"ref": "blue.recipes.feed.defs#recipeView",
"type": "ref"
}
},
"nextCursor": {
"type": "string"
}
}
},
"encoding": "application/json"
},
"parameters": {
"type": "params",
"properties": {
"limit": {
"type": "integer",
"default": 50,
"maximum": 100,
"minimum": 1
},
"author": {
"type": "string",
"format": "at-identifier"
},
"cursor": {
"type": "string"
}
}
},
"description": "Response model for fetching multiple recipes."
}