GET /space/astronauts
Erhalten Sie eine list of all humans currently in space right now, einschließlich their names und which spacecraft they are aboard (ISS, Tiangong, etc.). Typischerweise 6-12 people at any given time. Ein faszinierender Echtzeit dataset for science education apps, space news dashboards, und trivia features. Updated whenever crew missions launch oder 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
}