POST
/
run
curl --request POST \
  --url https://{agentSlug}.agent.itura.ai/run \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "input": "Your agent parameters here"
}'
{
  "run_id": "c631ab97-d42e-4704-8181-05bcd2eb37b5",
  "message": "Run request accepted and queued for execution",
  "status": "PENDING"
}

Authorizations

Authorization
string
header
required

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

Body

application/json · object

Input data for the agent run.

Arbitrary JSON object containing parameters for the agent run.

Response

202
application/json

Run request accepted and queued for execution.

The response is of type object.