API endpoint that allows Astronaut to be viewed.

GET: Return a list of all the existing astronauts.

MODE: Normal, List, LaunchList and Detailed /2.2.0/astronaut/?mode=detailed

FILTERS: Parameters - 'name', 'status', 'nationality', 'agency__name', 'agency__abbrev', 'date_of_birth', 'date_of_death', 'status_ids', 'is_human', 'type__id', 'has_flown', 'in_space' Example - /2.2.0/astronaut/?nationality=American

SEARCH EXAMPLE: /2.2.0/astronaut/?search=armstrong Searches through name, nationality and agency name

ORDERING: Fields - 'name', 'status', 'date_of_birth' Example - /2.2.0/astronaut/?order=name

GET /2.2.0/astronaut/210/?format=api
HTTP 200 OK
Allow: GET
Content-Type: application/json
Vary: Accept

{
    "id": 210,
    "url": "https://lldev.thespacedevs.com/2.2.0/astronaut/210/?format=api",
    "name": "Andriyan Nikolayev",
    "status": {
        "id": 11,
        "name": "Deceased"
    },
    "type": {
        "id": 2,
        "name": "Government"
    },
    "in_space": false,
    "time_in_space": "P21DT15H20M55S",
    "eva_time": "P0D",
    "agency": {
        "id": 63,
        "url": "https://lldev.thespacedevs.com/2.2.0/agencies/63/?format=api",
        "name": "Russian Federal Space Agency (ROSCOSMOS)",
        "type": "Government"
    },
    "age": 74,
    "date_of_birth": "1929-09-05",
    "date_of_death": "2004-07-03",
    "nationality": "Russian",
    "twitter": null,
    "instagram": null,
    "bio": "Andriyan Grigoryevich Nikolayev was a Soviet cosmonaut. He was an ethnic Chuvash.\r\n\r\nNikolayev flew on two space flights: Vostok 3 (effectively becoming the third Soviet cosmonaut) and Soyuz 9. His call sign in these flights was Falcon (Russian: Со́кол). On both, he set new endurance records for the longest time a human being had remained in orbit. He also served as backup for the Vostok 2 and Soyuz 8 missions.",
    "profile_image": "https://thespacedevs-prod.nyc3.digitaloceanspaces.com/media/images/andriyan2520nikolayev_image_20181201183434.jpg",
    "profile_image_thumbnail": "https://thespacedevs-prod.nyc3.digitaloceanspaces.com/media/images/255bauto255d__image_thumbnail_20240305190526.jpeg",
    "wiki": "https://en.wikipedia.org/wiki/Andriyan_Nikolayev",
    "flights": [],
    "landings": [],
    "flights_count": 2,
    "landings_count": 2,
    "spacewalks_count": 0,
    "last_flight": "1970-06-01T19:00:00Z",
    "first_flight": "1962-08-11T08:30:00Z",
    "spacewalks": []
}