Skip to main content
GET
/
agents
/
history

Endpoint

GET https://gateway.orkeia.ai/agents/history

Headers

authorization:  <your_token>
Content-Type: application/json

Example (cURL)

curl -X GET "https://gateway.orkeia.ai/agents/history" \
  -H "authorization:  <your_token>"

Responses

Response - Success

[
  {
    "id": "evt1",
    "agentId": "agent123",
    "action": "created",
    "timestamp": "2024-07-01T12:00:00Z"
  },
    {
    "id": "evt2",
    "agentId": "agent134",
    "action": "created",
    "timestamp": "2024-07-01T12:00:00Z"
  }
]

500 — Bad Request

{
  "status": "ERROR",
  "code": "server/error",
  "data": null
}

400 — Client Error

{
  "status": "ERROR",
  "code": "client/error",
  "data": null
}