Build for Space
SDKs and APIs for satellite tracking, orbital computing, and space infrastructure.
Demo API Key - Try instantly, no signup
rs_demo_rotastellar2026
10 requests/minute. Click to copy.
SDK Packages
Available for Python, Node.js, and Rust
Python SDK
Satellite tracking, orbital intelligence, and compute planning. Unified client for the full API.
pip install rotastellar from rotastellar import RotaStellarClient
client = RotaStellarClient(api_key="rs_demo_...")
sat = client.satellites.get("25544") # ISS
print(f"{sat.name}: {sat.position.lat:.2f}°") Rust SDK
High-performance orbital planning, feasibility, and tracking - native or compiled to WASM.
cargo add rotastellar use rotastellar::{Position, Orbit};
use rotastellar_compute::{FeasibilityCalculator, WorkloadProfile, WorkloadType};
let calc = FeasibilityCalculator::new(550.0);
let profile = WorkloadProfile::new(WorkloadType::Inference, 10.0)
.with_memory_gb(32.0);
let result = calc.analyze(&profile, None);
println!("feasible: {}", result.feasible);