Skip to main content

Quickstart

This guide will get you from zero to your first API call in under 5 minutes.

1. Get an API Key

Request Early Access

Sign up to receive your API credentials.

2. Install the SDK

pip install rotastellar

3. Make Your First Request

from rotastellar import RotaStellar

client = RotaStellar(api_key="rs_your_api_key")

# Get ISS position
iss = client.intelligence.satellite("ISS")
pos = iss.position()

print(f"ISS Location: {pos.lat}, {pos.lon}")
print(f"Altitude: {pos.altitude_km} km")

4. Explore the API

Now that you’re set up, explore what you can build:

Rate Limits

TierRequests/minuteRequests/day
Free101,000
Pro100100,000
EnterpriseCustomCustom

Need Help?