Skip to main content
POST
/
orchestration
/
traces
/
list
List traces
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.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

Successful response

traces
Traces · object[]
required

Traces matching the filter.

count
number
required

Total count of matching traces.