curl --request GET \
--url https://api.getcargo.io/v1/expression/recipes/list \
--header 'Authorization: Bearer <token>'{
"recipes": [
{
"uuid": "<string>",
"shortId": "<string>",
"version": 123,
"workspaceUuid": "<string>",
"name": "<string>",
"description": "<string>",
"category": "other",
"executionsCount": 123,
"isPublic": true,
"isBlacklisted": true,
"archivedAt": "<string>",
"placeholders": [
{
"slug": "<string>",
"name": "<string>",
"kind": "string",
"description": "<string>"
}
],
"expression": "<string>",
"instructTo": "ai",
"kind": "jsExpression",
"userUuid": "<string>",
"userFirstName": "<string>",
"userLastName": "<string>",
"userPicture": "<string>",
"isFavorite": true
}
]
}List all expression recipes
curl --request GET \
--url https://api.getcargo.io/v1/expression/recipes/list \
--header 'Authorization: Bearer <token>'{
"recipes": [
{
"uuid": "<string>",
"shortId": "<string>",
"version": 123,
"workspaceUuid": "<string>",
"name": "<string>",
"description": "<string>",
"category": "other",
"executionsCount": 123,
"isPublic": true,
"isBlacklisted": true,
"archivedAt": "<string>",
"placeholders": [
{
"slug": "<string>",
"name": "<string>",
"kind": "string",
"description": "<string>"
}
],
"expression": "<string>",
"instructTo": "ai",
"kind": "jsExpression",
"userUuid": "<string>",
"userFirstName": "<string>",
"userLastName": "<string>",
"userPicture": "<string>",
"isFavorite": true
}
]
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
UI types to include.
ai, js Recipe tab filter.
all, user, workspace, favorites Recipe categories to include.
other, classification, cleaning, marketing, sales, event, copywriting Filter recipes by name.
Maximum number of recipes to return.
Number of recipes to skip.
Successful response
List of recipes.
Show child attributes
Was this page helpful?