v1

latestOpenAPI 3.0.02026-07-26117198177.4 KB
Workspace Config

Get workspace request history

Returns the last 30 days of API requests for the workspace resolved from the API key, newest first, cursor-paginated.

get/v1/workspace/requests

Query parameters

limitstring
cursorstring

Response

next_cursorstring nullable required

Cursor for the next page; null when there are no more rows

Example response

{
  "requests": [
    {
      "timestamp": "2026-07-15T14:22:31.933Z",
      "method": "GET",
      "route": "/v1/risk/address",
      "status": 200,
      "credits": 1,
      "api_key": "...y123"
    }
  ],
  "next_cursor": "1784123437933-0"
}