← StarDeck

Crew Manifest

-- Humans currently in space
Loading crew manifest

Public API

This data is available as a free public JSON API. CORS is enabled — call it from anywhere. Responses are cached for 10 minutes.

GET https://stardeck.xyz/api/crew-manifest
Full crew manifest: everyone currently in space, grouped by vehicle and station.
{
  "timestamp": "2026-04-13T12:00:00Z",
  "total": 13,
  "vehicles": [
    {
      "vehicle": "Soyuz MS-27",
      "station": "ISS",
      "crew": [ { "name": "...", "agency": "...", ... } ]
    }
  ],
  "people": [ /* flat list of every person */ ],
  "sources": {
    "iss": "corquaid/international-space-station-APIs",
    "artemis": "StarDeck Artemis II Tracker",
    "tiangong": "Manual (no public API)"
  }
}
GET https://stardeck.xyz/api/crew-manifest/count
Just the current count and timestamp. Handy for widgets, IoT displays, status pages.
{
  "total": 13,
  "timestamp": "2026-04-13T12:00:00Z"
}
Sources: NASA ISS API, StarDeck Artemis II, CNSA (manual) --