Skip to main content
GET
/
api
/
deployments
curl https://console.rotastellar.com/api/deployments \
  -H "Cookie: session=..."
{
  "deployments": [
    {
      "id": "dep-456",
      "mission_id": "mis-123",
      "plan_id": "plan-789",
      "satellite_id": "25544",
      "status": "completed",
      "mode": "simulated",
      "speed_multiplier": 100,
      "started_at": "2026-03-07T12:00:05Z",
      "completed_at": "2026-03-07T12:01:32Z",
      "created_at": "2026-03-07T12:00:00Z",
      "mission_name": "ISS ML Pipeline",
      "sat_norad_id": "25544",
      "plan_label": "On-Board ML Inference"
    }
  ]
}
Base URL: https://console.rotastellar.com — Requires session cookie or API key authentication.

Request

No parameters required. Returns the 50 most recent deployments for the authenticated user.
curl https://console.rotastellar.com/api/deployments \
  -H "Cookie: session=..."
{
  "deployments": [
    {
      "id": "dep-456",
      "mission_id": "mis-123",
      "plan_id": "plan-789",
      "satellite_id": "25544",
      "status": "completed",
      "mode": "simulated",
      "speed_multiplier": 100,
      "started_at": "2026-03-07T12:00:05Z",
      "completed_at": "2026-03-07T12:01:32Z",
      "created_at": "2026-03-07T12:00:00Z",
      "mission_name": "ISS ML Pipeline",
      "sat_norad_id": "25544",
      "plan_label": "On-Board ML Inference"
    }
  ]
}

Response Fields

FieldTypeDescription
idstringDeployment ID
mission_idstringParent mission ID
plan_idstringSource plan ID
satellite_idstringNORAD catalog ID
statusstringpending, dispatched, running, completed, failed, cancelled
modestringsimulated or live
speed_multipliernumberSimulation speed (simulated mode only)
started_atstringISO 8601 timestamp when execution started
completed_atstringISO 8601 timestamp when execution finished
created_atstringISO 8601 timestamp when deployment was created
mission_namestringName of the parent mission
plan_labelstringLabel of the source plan