Returns a paginated list of available recipes for the authenticated tenant. Use start and limit to page through results.
Request
Provide your bearer token in the Authorization
header when making requests to protected resources. Example:Authorization: Bearer ********************
Request Code Samples
curl --location 'https://us1-api.crop.photo/v1/recipe/list' \
--header 'Authorization: Bearer <token>'
Responses
application/json
{
"start": 0,
"nEntries": 0,
"total": 0,
"entries": [
{
"id": "string",
"name": "string",
"note": "string",
"categories": [
"string"
],
"tags": [
"string"
],
"outputDimensions": [
"string"
],
"aspectRatios": [
"string"
],
"outputFormats": [
"string"
],
"estimatedCreditsPerImage": 0,
"aiRecipe": true
}
]
}
Modified at 2026-06-23 17:34:03