Skip to main content
GET
/
v1
/
projects
/
{project_identifier}
/
spans
/
otlpv1
{
  "data": [
    {
      "attributes": [
        {
          "key": "<string>",
          "value": {
            "array_value": "<any>",
            "bool_value": "<any>",
            "bytes_value": "<any>",
            "double_value": "<any>",
            "int_value": "<any>",
            "kvlist_value": "<any>",
            "string_value": "<any>"
          }
        }
      ],
      "dropped_attributes_count": 2147483647,
      "dropped_events_count": 2147483647,
      "dropped_links_count": 2147483647,
      "end_time_unix_nano": 9223372036854776000,
      "events": [
        {
          "attributes": [
            {
              "key": "<string>",
              "value": {
                "array_value": "<any>",
                "bool_value": "<any>",
                "bytes_value": "<any>",
                "double_value": "<any>",
                "int_value": "<any>",
                "kvlist_value": "<any>",
                "string_value": "<any>"
              }
            }
          ],
          "dropped_attributes_count": 2147483647,
          "name": "<string>",
          "time_unix_nano": 9223372036854776000
        }
      ],
      "flags": 2147483647,
      "kind": "SPAN_KIND_UNSPECIFIED",
      "links": null,
      "name": "<string>",
      "parent_span_id": "<string>",
      "span_id": "<string>",
      "start_time_unix_nano": 9223372036854776000,
      "status": {
        "code": -1,
        "message": "<string>"
      },
      "trace_id": "<string>",
      "trace_state": "<string>"
    }
  ],
  "next_cursor": "<string>"
}

Path Parameters

project_identifier
string
required

The project identifier: either project ID or project name. If using a project name, it cannot contain slash (/), question mark (?), or pound sign (#) characters.

Query Parameters

cursor
string | null

Pagination cursor (Span Global ID)

limit
integer
default:100

Maximum number of spans to return

Required range: 0 < x <= 1000
start_time
string<date-time> | null

Inclusive lower bound time

end_time
string<date-time> | null

Exclusive upper bound time

Response

Successful Response

Paginated response where each span follows OTLP JSON structure.

data
OtlpSpan · object[]
required
next_cursor
string | null
required