GET /space/astronauts
Hae a list of all humans tällä hetkellä in space right now, mukaan lukien their names and which spacecraft they are aboard (ISS, Tiangong, etc.). Tyypillisesti 6-12 people at any given time. Kiehtova reaaliaikainen dataset for science education apps, space news dashboards, and trivia features. Päivitetään whenever crew missions launch or return.
curl https://nordapi.ee/api/v1/space/astronauts
{
"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
}