Skip to main content

RotaStellar API

The RotaStellar API provides programmatic access to orbital compute infrastructure — from planning tools to runtime execution.
Early Access — The API is currently in early access. Request an API key to get started.

Platform Overview

The API is organized around three product layers:

API Status

ProductStatusAvailability
Planning ToolsEarly AccessNow
Orbital IntelligenceEarly AccessNow
Orbital RuntimeDesign PreviewQ2 2026

Quick Example

from rotastellar import RotaStellar

client = RotaStellar(api_key="rs_...")

# Check feasibility of orbital compute
result = client.planning.analyze(
    workload="ai_inference",
    compute_tflops=100
)

print(f"Recommended orbit: {result.orbit}")
print(f"Estimated cost: ${result.cost_monthly}/mo")

Base URL

All API requests should be made to:
https://api.rotastellar.com/v1

Authentication

The API uses Bearer token authentication. Include your API key in the Authorization header:
curl https://api.rotastellar.com/v1/satellites \
  -H "Authorization: Bearer rs_your_api_key"

Get your API key

Request early access to receive your API credentials.