Get all objects
GET/v1/object
Get a list of all objects. An object is a satellite in orbit; all trajectories are associated with an object.
Request
Query Parameters
operator_id string
Filter objects by Operator ID.
norad_id string
Filter objects by NORAD ID.
object_name string
Filter objects by their name (case-insensitive, but otherwise must fully match).
Responses
- 200
- 400
- 404
OK
- text/plain
- Schema
- Example (from schema)
Schema
- Array [
- ]
alive booleanrequired
The object is actively communicating with a ground service
duplicate_of_id uuid
duplicate_of_name string
Possible values: <= 256 characters
duplicate_of_operator_id uuidrequired
duplicate_of_operator_name stringrequired
Possible values: <= 256 characters
hard_body_radius numberrequired
Possible values: <= 512
Hard body radius of the object in meters
id uuid
maneuverability booleanrequired
name stringrequired
Possible values: <= 256 characters
norad_id intrequired
operator_email stringrequired
Possible values: <= 256 characters
operator_id uuidrequired
operator_name stringrequired
Possible values: <= 256 characters
operator_phone stringrequired
Possible values: <= 256 characters
[
{
"alive": true,
"duplicate_of_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"duplicate_of_name": "string",
"duplicate_of_operator_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"duplicate_of_operator_name": "string",
"hard_body_radius": 0,
"id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"maneuverability": true,
"name": "string",
"norad_id": 0,
"operator_email": "string",
"operator_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"operator_name": "string",
"operator_phone": "string"
}
]
Bad Request
- text/plain
- Schema
- Example (from schema)
Schema
correlation_id string
error string
error_type string
metadata
{
"correlation_id": "string",
"error": "string",
"error_type": "string",
"metadata": {}
}
Not Found
- text/plain
- Schema
- Example (from schema)
Schema
correlation_id string
error string
error_type string
metadata
{
"correlation_id": "string",
"error": "string",
"error_type": "string",
"metadata": {}
}
Loading...