Skip to main content
POST
/
trace
/
{traceId}
/
details
Retrieve trace details
curl --request POST \
  --url http://api.local.stratumn.com:3000/trace/{traceId}/details \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "input": "<unknown>"
}
'
{
  "links": [
    {}
  ],
  "totalCount": 123,
  "info": {
    "hasNext": true,
    "hasPrevious": true,
    "startCursor": "<string>",
    "endCursor": "<string>"
  }
}

Authorizations

Authorization
string
header
required

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

Path Parameters

traceId
string
required

The UUID of the trace

Body

application/json
input
any
required

The input used to retrieve the links of a given trace

Response

200 - application/json

The details of the given trace

The links of the trace

totalCount
integer
required

The total count of the links

info
object
required