GET
/
workflows
List workflows
curl --request GET \
  --url https://core.ravenna.ai/api/workflows \
  --header 'x-ravenna-api-token: <api-key>'
{
  "workflows": [
    {
      "id": "<string>",
      "name": "<string>",
      "description": "<string>",
      "collectionId": "<string>",
      "author": {
        "id": "<string>",
        "firstName": "<string>",
        "lastName": "<string>",
        "email": "<string>",
        "image": "<string>"
      },
      "state": "Active",
      "reference": "<string>",
      "createdAt": "<string>",
      "updatedAt": "<string>",
      "countOfRuns": 123,
      "lastRun": {
        "id": "<string>",
        "createdAt": "<string>"
      }
    }
  ],
  "total": 123
}

Authorizations

x-ravenna-api-token
string
header
required

Response

Successful response

workflows
object[]
required
total
number
required