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

{
    "id": 81,
    "url": "https://ll.thespacedevs.com/2.2.0/astronaut/81/?format=api",
    "name": "Valentin Bondarenko",
    "status": {
        "id": 5,
        "name": "Lost In Training"
    },
    "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": 24,
    "date_of_birth": "1937-02-16",
    "date_of_death": "1961-03-23",
    "nationality": "Russian",
    "twitter": null,
    "instagram": null,
    "bio": "Valentin Vasiliyevich Bondarenko (Ukrainian: Валентин Васильович Бондаренко, Russian: Валентин Васильевич Бондаренко; 16 February 1937 – 23 March 1961) was a Soviet fighter pilot selected in 1960 for training as a cosmonaut. He died as the result of burns sustained in a fire during a 15-day low-pressure endurance experiment in Moscow. The government concealed the death, along with Bondarenko's membership in the cosmonaut corps, until 1980. A crater on the Moon's far side is named after him.",
    "profile_image": "https://spacelaunchnow-prod-east.nyc3.digitaloceanspaces.com/media/images/valentin2520bondarenko_image_20181128223624.jpg",
    "profile_image_thumbnail": "https://spacelaunchnow-prod-east.nyc3.digitaloceanspaces.com/media/images/255bauto255d__image_thumbnail_20240305190922.jpeg",
    "wiki": "https://en.wikipedia.org/wiki/Valentin_Bondarenko",
    "flights": [],
    "landings": [],
    "flights_count": 0,
    "landings_count": 0,
    "spacewalks_count": 0,
    "last_flight": null,
    "first_flight": null,
    "spacewalks": []
}