PrompticPromptic

List traces

GET
/traces

Authorization

BearerApiKey
AuthorizationBearer <token>

API key from workspace settings

In: header

Query Parameters

limit?integer
Default50
offset?integer
Default0
status?string
ai_component?string
start_after?string
Formatdate-time
start_before?string
Formatdate-time

Response Body

application/json

application/json

curl -X GET "https://loading/api/v1/traces"
{
  "data": [
    {
      "id": "string",
      "traceId": "string",
      "name": "string",
      "status": "string",
      "aiComponentId": "string",
      "totalTokens": 0,
      "totalCostUsd": 0,
      "durationMs": 0,
      "startTime": "string",
      "endTime": "string"
    }
  ]
}
{
  "error": "string"
}