Skip to main content

Get all CDMs related to a trajectory.

GET 

/v2/trajectory/:id/cdms

A paginated API, where the next page will chronologically retrieve the changes since the last API call.

The pagination is ordered by the CDM creation time. Since CDMs are immutable, each CDM will only show up once while paginating.

Includes CDMs against operator_ephemeris or spacex_optical secondaries.

This API may be used in a streaming fashion. Even when the API returns 0 results, the same token may be used in the future to retrieve any additional changes since the last call.

If a client receives a 400 response with "pagination_too_old" error type, they must clear their pagination token.

Request

Path Parameters

    id stringrequired

    Trajectory UUID

Query Parameters

    token string

    Continuation token to retrieve next page.

Responses

OK

Schema
    result object[]
  • Array [
  • creation_time string

    YYYY-MM-DDTHH:mm:ss[.sssss]Z

    event_id uuid
    file string
    id uuid
    is_active boolean
    object1_id uuid
    object1_maneuverable boolean
    object1_name string
    object2_id uuid
    object2_maneuverable boolean
    object2_name string
    operator1_id uuid
    operator1_name string
    operator2_id uuid
    operator2_name string
    probability_of_collision number
    tca_gps_nanos integer
    trajectory1_created_at string

    YYYY-MM-DDTHH:mm:ss[.sssss]Z

    trajectory1_id uuid
    trajectory1_source string
    trajectory2_created_at string

    YYYY-MM-DDTHH:mm:ss[.sssss]Z

    trajectory2_id uuid
    trajectory2_source string
  • ]
  • token string
Loading...