Vega
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:

  1. Authenticate with POST /auth, or use a long-lived VEGA_API_TOKEN.
  2. List GET /tracked_satellites to get satellite IDs.
  3. List GET /ground_stations to get ground-station coordinates.
  4. Query GET /interference/timeseries with 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"

On this page