API Reference
Overview
REST API reference for the Vega platform.
The Vega API is a JSON-over-HTTPS REST API for accessing tracked satellites, ground stations, interference analysis, and coverage analysis from your account.
Base URL: https://vega.space/api/v1
Quick start
A typical request flow:
- Authenticate with
POST /auth, or use a long-livedVEGA_API_TOKEN. - List
GET /tracked_satellitesto get satellite IDs. - List
GET /ground_stationsto get ground-station coordinates. - Query
GET /interference/timeserieswith a satellite ID and a location.
All requests (except health checks) must include a bearer token:
curl https://vega.space/api/v1/me \
-H "Authorization: Bearer $VEGA_API_TOKEN"