curl --request GET \
--url https://api.avidoai.com/v0/traces/by-test/{id} \
--header 'x-api-key: <api-key>' \
--header 'x-application-id: <api-key>'{
"data": {
"id": "123e4567-e89b-12d3-a456-426614174000",
"traceId": "789e4567-e89b-12d3-a456-426614174000",
"applicationId": "app_123",
"timestamp": "2025-01-05T12:34:56.789Z",
"type": "llm",
"event": "start",
"tokens": {
"input": 100,
"output": 200
},
"metadata": {
"custom": "metadata"
}
}
}Retrieves detailed information about a specific trace.
curl --request GET \
--url https://api.avidoai.com/v0/traces/by-test/{id} \
--header 'x-api-key: <api-key>' \
--header 'x-application-id: <api-key>'{
"data": {
"id": "123e4567-e89b-12d3-a456-426614174000",
"traceId": "789e4567-e89b-12d3-a456-426614174000",
"applicationId": "app_123",
"timestamp": "2025-01-05T12:34:56.789Z",
"type": "llm",
"event": "start",
"tokens": {
"input": 100,
"output": 200
},
"metadata": {
"custom": "metadata"
}
}
}Your unique Avido API key
Your unique Avido Application ID
The unique identifier of the trace
"123e4567-e89b-12d3-a456-426614174000"
Successfully retrieved trace
Successful response containing a single trace object
A trace grouping related steps (e.g. a user-agent interaction or conversation).
Show child attributes