Skip to main content
POST
/
v1
/
ai
/
agents
/
{name}
/
run
Run Named Agent
curl --request POST \
  --url https://api.example.com/v1/ai/agents/{name}/run \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "input": {}
}'
{
  "job_id": "<string>",
  "agent": "<string>",
  "status": "queued"
}

Authorizations

Authorization
string
header
required

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

Path Parameters

name
string
required

Body

application/json
input
Input · object

Response

Successful Response

job_id
string
required
agent
string
required
status
string
default:queued