Skip to main content
GET
/
agents
/
{agentId}
/
workflows
List workflow references
curl --request GET \
  --url https://odyssey.asteroid.ai/agents/v2/agents/{agentId}/workflows \
  --header 'X-Asteroid-Agents-Api-Key: <api-key>'
[
  {
    "createdAt": "2023-11-07T05:31:56Z",
    "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "isDeletable": true,
    "author": "<string>",
    "parentId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "version": 123
  }
]

Documentation Index

Fetch the complete documentation index at: https://docs.asteroid.ai/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

X-Asteroid-Agents-Api-Key
string
header
required

Path Parameters

agentId
string<uuid>
required

The ID of the agent

Response

The request has succeeded.

createdAt
string<date-time>
required

When this workflow was created

id
string<uuid>
required

The unique ID of this workflow

isDeletable
boolean
required

Whether this workflow can be deleted (unpublished with no executions)

author
string

The email of the user who created this workflow.

parentId
string<uuid>

The ID of the parent workflow this was derived from (for lineage tracking)

version
integer

The published version number. Null if unpublished.