← Ciencia y espacio

Personas en el espacio

GET /space/astronauts

Get a list of all humans currently in space right now, incluyendo their nombres and which spacecraft they are aboard (ISS, Tiangong, etc.). Typically 6-12 people at any given time. A fascinating real-time dataset for science education aplicaciones, space news paneles, and trivia features. Updated whenever crew missions launch or return.

Ejemplos de solicitudes

Uso basico
curl https://nordapi.ee/api/v1/space/astronauts

Respuesta en vivo

{
  "count": 12,
  "data": [
    {
      "craft": "ISS",
      "name": "Oleg Kononenko"
    },
    {
      "craft": "ISS",
      "name": "Nikolai Chub"
    },
    {
      "craft": "ISS",
      "name": "Tracy Caldwell Dyson"
    },
    {
      "craft": "ISS",
      "name": "Matthew Dominick"
    },
    {
      "craft": "ISS",
      "name": "Michael Barratt"
    },
    {
      "craft": "ISS",
      "name": "Jeanette Epps"
    },
    {
      "craft": "ISS",
      "name": "Alexander Grebenkin"
    },
    {
      "craft": "ISS",
      "name": "Butch Wilmore"
    },
    {
      "craft": "ISS",
      "name": "Sunita Williams"
    },
    {
      "craft": "Tiangong",
      "name": "Li Guangsu"
    },
    {
      "craft": "Tiangong",
      "name": "Li Cong"
    },
    {
      "craft": "Tiangong",
      "name": "Ye Guangfu"
    }
  ],
  "success": true
}