Skip to main content
POST
https://api.rotastellar.com/v1
/
v1
/
planning
/
analyze
curl -X POST https://api.rotastellar.com/v1/planning/analyze \
  -H "Authorization: Bearer rs_your_api_key" \
  -H "Content-Type: application/json" \
  -d '{
    "workload": "ai_inference",
    "compute_tflops": 100,
    "storage_tb": 10,
    "bandwidth_gbps": 1,
    "latency_sla_ms": 50
  }'
{
  "viable": true,
  "recommendation": "LEO constellation with 6 satellites provides optimal balance of latency and cost",
  "orbit": {
    "type": "LEO",
    "altitude_km": 550,
    "inclination_deg": 53,
    "constellation_size": 6
  },
  "cost": {
    "monthly": 125000,
    "setup": 2500000,
    "currency": "USD"
  },
  "power": {
    "required_kw": 15.5,
    "solar_array_m2": 45,
    "battery_kwh": 120
  },
  "latency": {
    "p50_ms": 25,
    "p95_ms": 45,
    "p99_ms": 65
  },
  "risks": [
    {
      "category": "thermal",
      "severity": "medium",
      "description": "Eclipse periods require thermal management"
    }
  ],
  "alternatives": [
    {
      "orbit": "MEO",
      "tradeoff": "Higher latency (80ms) but 40% lower cost"
    }
  ]
}

Request

workload
string
required
Type of workload. Options: ai_inference, ai_training, data_processing, edge_compute, storage
compute_tflops
number
required
Required compute capacity in TFLOPS (FP16 equivalent)
storage_tb
number
Required storage in terabytes
bandwidth_gbps
number
Required bandwidth to/from ground in Gbps
latency_sla_ms
number
Maximum acceptable latency in milliseconds
availability_sla
number
Required availability (e.g., 0.999 for 99.9%)
region
string
Geographic region: global, north-america, europe, asia-pacific
curl -X POST https://api.rotastellar.com/v1/planning/analyze \
  -H "Authorization: Bearer rs_your_api_key" \
  -H "Content-Type: application/json" \
  -d '{
    "workload": "ai_inference",
    "compute_tflops": 100,
    "storage_tb": 10,
    "bandwidth_gbps": 1,
    "latency_sla_ms": 50
  }'
{
  "viable": true,
  "recommendation": "LEO constellation with 6 satellites provides optimal balance of latency and cost",
  "orbit": {
    "type": "LEO",
    "altitude_km": 550,
    "inclination_deg": 53,
    "constellation_size": 6
  },
  "cost": {
    "monthly": 125000,
    "setup": 2500000,
    "currency": "USD"
  },
  "power": {
    "required_kw": 15.5,
    "solar_array_m2": 45,
    "battery_kwh": 120
  },
  "latency": {
    "p50_ms": 25,
    "p95_ms": 45,
    "p99_ms": 65
  },
  "risks": [
    {
      "category": "thermal",
      "severity": "medium",
      "description": "Eclipse periods require thermal management"
    }
  ],
  "alternatives": [
    {
      "orbit": "MEO",
      "tradeoff": "Higher latency (80ms) but 40% lower cost"
    }
  ]
}