Skip to main content
GET
/
expression
/
recipes
/
{uuid}
Get recipe
curl --request GET \
  --url https://api.getcargo.io/v1/expression/recipes/{uuid} \
  --header 'Authorization: Bearer <token>'
{
  "recipe": {
    "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
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

uuid
string
required

Resource UUID

Response

Successful response

recipe
Recipe · object
required

Recipe details.