arrow_back Back to Resources

API Documentation

Integrate satellite telemetry and mission data directly into your applications.

Authentication

All API requests require an API key to be included in the header.

Authorization: Bearer YOUR_API_KEY
GET

/v1/satellites/{id}/telemetry

Retrieves the latest telemetry data for a specific satellite.

Response Example

{
  "satellite_id": "SAT-001",
  "timestamp": "2025-12-22T10:30:00Z",
  "status": "nominal",
  "telemetry": {
    "altitude": 450.5,
    "velocity": 7.66,
    "battery_level": 87.5,
    "temperature": 22.4
  }
}
GET

/v1/satellites/{id}/location

Returns the current orbital position (latitude, longitude, altitude).

Response Example

{
  "satellite_id": "SAT-001",
  "latitude": 34.0522,
  "longitude": -118.2437,
  "altitude_km": 450.2
}