Skip to main content
GET
/
api
/
v1
/
workflows
List Workflows
curl --request GET \
  --url https://api.example.com/api/v1/workflows
{
  "workflows": [
    {}
  ]
}
Returns all workflows owned by the authenticated user, ordered by creation date.

Authentication

Requires a Bearer token. See Authentication.

Request Examples

curl https://hitheo.ai/api/v1/workflows \
  -H "Authorization: Bearer $THEO_API_KEY"

Response

workflows
object[]
Array of workflow objects with id, name, triggerType, triggerConfig, steps, enabled, createdAt, and updatedAt.

Endpoint

GET /api/v1/workflows Requires authentication via Bearer token. See Authentication.