Developer Portal

API key management, usage tracking, and developer resources

Enterprise Tier12,569 API Calls This MonthAll Services Operational
Generate New API Key
Create a new API key for your application

Your API Keys

Production API Key
Created 2025-11-01Enterprise Tier
active
Usage This Month
8,432 / ∞
Quota: Unlimited
Rate Limit
No Limit
Per minute
Last Used
2 hours ago
Recent activity
Staging Environment
Created 2025-10-15Startup Tier
active
Usage This Month
3,245 / 10,000
Quota: 10,000/month
Rate Limit
100 req/min
Per minute
Last Used
2 hours ago
Recent activity
Development Key
Created 2025-09-20Academic Tier
active
Usage This Month
892 / 1,000
Quota: 1,000/month
Rate Limit
100 req/min
Per minute
Last Used
2 hours ago
Recent activity
Quick Start Guide
Example API calls to get you started
curl -X GET "https://api.orbitedge.space/v1/satellites" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json"
const response = await fetch('https://api.orbitedge.space/v1/satellites', {
  headers: {
    'Authorization': 'Bearer YOUR_API_KEY',
    'Content-Type': 'application/json'
  }
});
const data = await response.json();
import requests

headers = {
    'Authorization': 'Bearer YOUR_API_KEY',
    'Content-Type': 'application/json'
}
response = requests.get('https://api.orbitedge.space/v1/satellites', headers=headers)
data = response.json()