Skip to main content

Telemetry

Real-time performance metrics for Starlink terminals. Returns the most recent 5 minutes of data across all terminals accessible by your token.

Telemetry is only available for Starlink Terminal devices. Gateways and access points do not produce telemetry data.

The telemetry object

  • timetimestamp

    When the sample was collected (UTC).

  • siteCodestring

    Site identifier for the terminal that produced this sample.

  • downlinkThroughputfloat

    Download throughput in Mbps.

  • uplinkThroughputfloat

    Upload throughput in Mbps.

  • pingLatencyAvgfloat

    Average round-trip latency in milliseconds.

  • pingDropRateAvgfloat

    Average packet drop rate, between 0 and 1.

  • snrfloat

    Signal-to-noise ratio.


List telemetry GET /v1/telemetries

Returns the last 5 minutes of telemetry samples for all terminals in your workspace, ordered by time descending.

GET/v1/telemetries
curl https://polaris.revlv.com/v1/telemetries \
-H "Authorization: Bearer {token}"
Response
{
"data": [
{
"time": "2026-05-02T10:30:00Z",
"siteCode": "REV-001-001",
"downlinkThroughput": 120.5,
"uplinkThroughput": 18.3,
"pingLatencyAvg": 42.1,
"pingDropRateAvg": 0.001,
"snr": 9.2
},
{
"time": "2026-05-02T10:25:00Z",
"siteCode": "REV-001-002",
"downlinkThroughput": 98.7,
"uplinkThroughput": 14.1,
"pingLatencyAvg": 38.5,
"pingDropRateAvg": 0.0,
"snr": 10.1
}
]
}