curl --request POST \
--url https://api.getcargo.io/v1/orchestration/traces/list \
--header 'Authorization: Bearer <token>'{
"traces": [
{
"uuid": "<string>",
"workspaceUuid": "<string>",
"workflowUuid": "<string>",
"rootRunUuid": "<string>",
"spansCount": 123,
"failedSpansCount": 123,
"pendingSpansCount": 123,
"succeededSpansCount": 123,
"creditsUsedCount": 123,
"startedAt": "<string>",
"finishedAt": "<string>",
"updatedAt": "<string>",
"status": "pending"
}
],
"count": 123
}List orchestration traces. Each trace wraps every span (node execution) across its run lineage; the summary is aggregated at query time directly from orchestration.spans (no separate traces table — spans carries trace_uuid with a bloom-filter skipping index).
curl --request POST \
--url https://api.getcargo.io/v1/orchestration/traces/list \
--header 'Authorization: Bearer <token>'{
"traces": [
{
"uuid": "<string>",
"workspaceUuid": "<string>",
"workflowUuid": "<string>",
"rootRunUuid": "<string>",
"spansCount": 123,
"failedSpansCount": 123,
"pendingSpansCount": 123,
"succeededSpansCount": 123,
"creditsUsedCount": 123,
"startedAt": "<string>",
"finishedAt": "<string>",
"updatedAt": "<string>",
"status": "pending"
}
],
"count": 123
}Documentation Index
Fetch the complete documentation index at: https://docs.getcargo.ai/llms.txt
Use this file to discover all available pages before exploring further.
Was this page helpful?