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/644/?format=api
HTTP 200 OK
Allow: GET
Content-Type: application/json
Vary: Accept

{
    "id": 644,
    "url": "https://ll.thespacedevs.com/2.2.0/astronaut/644/?format=api",
    "name": "Nikolai Tikhonov",
    "status": {
        "id": 2,
        "name": "Retired"
    },
    "type": {
        "id": 2,
        "name": "Government"
    },
    "in_space": false,
    "time_in_space": "P0D",
    "eva_time": "P0D",
    "agency": {
        "id": 63,
        "url": "https://ll.thespacedevs.com/2.2.0/agencies/63/?format=api",
        "name": "Russian Federal Space Agency (ROSCOSMOS)",
        "type": "Government"
    },
    "age": 41,
    "date_of_birth": "1982-05-23",
    "date_of_death": null,
    "nationality": "Russian",
    "twitter": null,
    "instagram": null,
    "bio": "Nikolay Vladimirovich Tikhonov (Russian: Николай В. Тихонов) was born May 23, 1982. He is a former Russian cosmonaut, selected in 2006.\r\n\r\nHe was selected as a backup flight engineer for Soyuz MS-02. He was made a prime crew member of Soyuz MS-04 but, due to Russian budget cuts, the crews were changed and Tikhonov was then slated to make his first spaceflight on the Soyuz MS-10 spacecraft. He was again removed from the manifest due to delays in launching the Russian Nauka module. He was scheduled to fly into space as commander of the Soyuz MS-15 mission, although he was removed for a third time following the aborted launch of Soyuz MS-10, and the subsequent crew changes that followed. He was then scheduled to finally make his first flight onboard Soyuz MS-16 in 2020. However he reportedly got an eye injury a month before the launch, was replaced on the flight, and subsequently left the cosmonaut corps due to health issues.",
    "profile_image": "https://spacelaunchnow-prod-east.nyc3.digitaloceanspaces.com/media/images/nikolai2520tikhonov_image_20200129210520.jpg",
    "profile_image_thumbnail": "https://spacelaunchnow-prod-east.nyc3.digitaloceanspaces.com/media/images/255bauto255d__image_thumbnail_20240305191106.jpeg",
    "wiki": "https://en.wikipedia.org/wiki/Nikolai_Tikhonov_(cosmonaut)",
    "flights": [],
    "landings": [],
    "flights_count": 0,
    "landings_count": 0,
    "spacewalks_count": 0,
    "last_flight": null,
    "first_flight": null,
    "spacewalks": []
}