Skip to main content
GET
/
v1
/
projects
/
{project_identifier}
/
spans
{
  "data": [
    {
      "id": "",
      "name": "<string>",
      "context": {
        "trace_id": "<string>",
        "span_id": "<string>"
      },
      "span_kind": "<string>",
      "parent_id": "<string>",
      "start_time": "2023-11-07T05:31:56Z",
      "end_time": "2023-11-07T05:31:56Z",
      "status_code": "<string>",
      "status_message": "",
      "attributes": {},
      "events": [
        {
          "name": "<string>",
          "timestamp": "2023-11-07T05:31:56Z",
          "attributes": {}
        }
      ]
    }
  ],
  "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

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