GET
/
status
/
{run_id}
curl --request GET \
  --url https://{agentSlug}.agent.itura.ai/status/{run_id} \
  --header 'Authorization: Bearer <token>'
{
"run_id": "c631ab97-d42e-4704-8181-05bcd2eb37b5",
"agent_id": "a1b2c3d4-e5f6-7890-1234-567890abcdef",
"agent_name": "your-agent-name-12345",
"agent_url": "https://your-agent-name-12345.agent.itura.ai",
"status": "COMPLETED",
"created_at": "2023-10-27T10:00:00Z",
"updated_at": "2023-10-27T10:05:00Z",
"duration_ms": 3
}

Authorizations

Authorization
string
header
required

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

Path Parameters

run_id
string
required

The UUID of the agent run to check. Must be a valid version 4 UUID.

Response

200
application/json

Successfully retrieved the status of the agent run.

The response is of type object.

GET
/
status
/
{run_id}
curl --request GET \
  --url https://{agentSlug}.agent.itura.ai/status/{run_id} \
  --header 'Authorization: Bearer <token>'
{
"run_id": "c631ab97-d42e-4704-8181-05bcd2eb37b5",
"agent_id": "a1b2c3d4-e5f6-7890-1234-567890abcdef",
"agent_name": "your-agent-name-12345",
"agent_url": "https://your-agent-name-12345.agent.itura.ai",
"status": "COMPLETED",
"created_at": "2023-10-27T10:00:00Z",
"updated_at": "2023-10-27T10:05:00Z",
"duration_ms": 3
}

Authorizations

Authorization
string
header
required

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

Path Parameters

run_id
string
required

The UUID of the agent run to check. Must be a valid version 4 UUID.

Response

200
application/json

Successfully retrieved the status of the agent run.

The response is of type object.