Vega
API Reference

Ground stations

Manage receiver locations registered to the account.

GET /ground_stations

List receiver locations registered to the account.

Response fields

FieldTypeNotes
idintegerGround-station ID
namestring
latitudestringReturned as a string; parse explicitly
longitudestringReturned as a string; parse explicitly
elevation_metersnumber
activeboolean

latitude and longitude are serialized as strings to preserve precision. Parse them with parseFloat (or your language's equivalent) before doing math on them.

POST /ground_stations

Create a new ground station.

Request body

FieldTypeRequiredDescription
namestringyesDisplay name
latitudefloatyes-90 to 90
longitudefloatyes-180 to 180
descriptionstringno
elevation_metersnumberno

GET /ground_stations/:id

Retrieve a specific ground station.

PATCH /ground_stations/:id

Update a ground station. Accepts the same fields as POST /ground_stations.

DELETE /ground_stations/:id

Delete a ground station. Returns 200 with the deleted object, or 404 if it does not exist.

On this page