Skip to main content
GET
/
traces
/
live
Get Live Traces
curl --request GET \
  --url https://engine-api.unomiq.com/traces/live \
  --header 'Authorization: Bearer <token>' \
  --header 'X-Unomiq-App-Id: <x-unomiq-app-id>'
{
  "data": [
    {
      "trace_id": "<string>",
      "span_id": "<string>",
      "span_name": "<string>",
      "span_kind": "<string>",
      "span_start_time_unix_nano": 123,
      "span_end_time_unix_nano": 123,
      "parent_span_id": "<string>",
      "service_name": "<string>",
      "resource_attributes": "<unknown>",
      "span_attributes": "<unknown>"
    }
  ],
  "pagination": {
    "page": 123,
    "limit": 123,
    "total": 123
  }
}

Authorizations

Authorization
string
header
required

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

Headers

X-Unomiq-App-Id
string
required

Query Parameters

start_time
string<date-time>
required

Start datetime (inclusive)

Example:

"2025-01-15T00:00:00Z"

end_time
string<date-time>
required

End datetime (exclusive)

Example:

"2025-01-16T00:00:00Z"

page
integer
default:1

Page number for pagination (1-indexed)

Required range: x >= 1
limit
integer
default:20

Number of items per page

Required range: 1 <= x <= 100

Response

Successful Response

Paginated response for live traces.

data
LiveTrace · object[]
required
pagination
PaginationInfo · object
required

Pagination metadata.