API Reference
Ground stations
Manage receiver locations registered to the account.
GET /ground_stations
List receiver locations registered to the account.
Response fields
| Field | Type | Notes |
|---|---|---|
id | integer | Ground-station ID |
name | string | |
latitude | string | Returned as a string; parse explicitly |
longitude | string | Returned as a string; parse explicitly |
elevation_meters | number | |
active | boolean |
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
| Field | Type | Required | Description |
|---|---|---|---|
name | string | yes | Display name |
latitude | float | yes | -90 to 90 |
longitude | float | yes | -180 to 180 |
description | string | no | |
elevation_meters | number | no |
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.