Skip to main content
GET
/
api
/
v1
/
traces
List Traces Route
curl --request GET \
  --url https://api.example.com/api/v1/traces
import requests

url = "https://api.example.com/api/v1/traces"

response = requests.get(url)

print(response.text)
const options = {method: 'GET'};

fetch('https://api.example.com/api/v1/traces', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));
<?php

$curl = curl_init();

curl_setopt_array($curl, [
CURLOPT_URL => "https://api.example.com/api/v1/traces",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);

$response = curl_exec($curl);
$err = curl_error($curl);

curl_close($curl);

if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}
package main

import (
"fmt"
"net/http"
"io"
)

func main() {

url := "https://api.example.com/api/v1/traces"

req, _ := http.NewRequest("GET", url, nil)

res, _ := http.DefaultClient.Do(req)

defer res.Body.Close()
body, _ := io.ReadAll(res.Body)

fmt.Println(string(body))

}
HttpResponse<String> response = Unirest.get("https://api.example.com/api/v1/traces")
.asString();
require 'uri'
require 'net/http'

url = URI("https://api.example.com/api/v1/traces")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Get.new(url)

response = http.request(request)
puts response.read_body
{
  "items": [
    {
      "trace_id": "<string>",
      "proxy_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "org_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "provider": "<string>",
      "model": "<string>",
      "request_tokens": 123,
      "response_tokens": 123,
      "latency_ms": 123,
      "policy_decision": "<string>",
      "intent_score": 123,
      "intent_action": "<string>",
      "integration_names": "<string>",
      "stream": 123,
      "status_code": 123,
      "timestamp": "2023-11-07T05:31:56Z",
      "tool_names": "<string>",
      "session_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "trace_flow_id": "<string>",
      "step_type": "<string>",
      "step_stage": "<string>",
      "step_index": 0,
      "policy_rule": "",
      "response_body": "",
      "request_system_prompt": "",
      "request_messages": "",
      "request_tools": "",
      "matched_capability": "",
      "intent_reason": "",
      "intent_latency_ms": 0,
      "ttft_ms": 0,
      "session_turn": 0,
      "custom_properties": {},
      "trace_path": "<string>",
      "parent_trace_id": "<string>",
      "started_at": "2023-11-07T05:31:56Z",
      "ended_at": "2023-11-07T05:31:56Z",
      "guardrail_name": "<string>",
      "guardrail_stage": "<string>",
      "guardrail_decision": "<string>",
      "guardrail_rule": "<string>",
      "guardrail_reason": "<string>",
      "guardrail_duration_ms": 123,
      "tool_call_id": "<string>",
      "tool_name": "<string>",
      "tool_args_json": "<string>",
      "tool_result_summary": "<string>",
      "tool_status": "<string>"
    }
  ],
  "total": 123,
  "limit": 123,
  "offset": 123
}
{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>",
"input": "<unknown>",
"ctx": {}
}
]
}

Headers

Authorization
string | null

Query Parameters

limit
integer
default:20
Required range: 1 <= x <= 100
offset
integer
default:0
Required range: x >= 0
proxy_id
string<uuid> | null
session_id
string<uuid> | null
trace_flow_id
string | null
step_type
string | null
provider
string | null
decision
string | null

Filter by policy_decision value

from
string<date-time> | null
to
string<date-time> | null

Response

Successful Response

items
TraceRecord · object[]
required
total
integer
required
limit
integer
required
offset
integer
required