Skip to main content
GET
/
agents
/
{agentId}
/
workflows
/
{workflowId}
/
inputs
Get workflow inputs
curl --request GET \
  --url https://odyssey.asteroid.ai/agents/v2/agents/{agentId}/workflows/{workflowId}/inputs \
  --header 'X-Asteroid-Agents-Api-Key: <api-key>'
{
  "inputs": [
    {
      "name": "<string>",
      "required": true,
      "schema": {},
      "defaultValue": "<unknown>",
      "description": "<string>"
    }
  ]
}

Authorizations

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

Path Parameters

agentId
string<uuid>
required

The ID of the agent

workflowId
string<uuid>
required

The ID of the workflow

Response

The request has succeeded.

The typed inputs a workflow declares

inputs
object[]
required

Typed input definitions the workflow accepts at execution time