Skip to main content
GET
/
tools
/
history

Endpoint

GET https://gateway.orkeia.ai/tools/history Authentication
Requires header authorization: <your_token>.

Example (cURL)

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

Responses

Response - Success

response
{
  "status": "OK",
  "data": [
    {
      "id": "EVT_1",
      "toolId": "TOOL_123456",
      "action": "created",
      "timestamp": "2024-07-01T12:00:00Z"
    }
  ]
}

500 — Server Error

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

400 — Client Error

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

Fields

FieldTypeDescription
idstringUnique identifier of the history event.
toolIdstringID of the tool related to the event.
actionstringAction performed (e.g., created, updated).
timestampstringDate/time of the event in ISO 8601 format.