API endpoint that allows Astronaut to be viewed.

GET:
Return a list of all the existing astronauts.

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

FILTERS:
Parameters - 'name', 'status', 'nationality', 'agency__name', 'agency__abbrev', 'date_of_birth',
'date_of_death', 'status_ids'
Example - /2.0.0/astronaut/?nationality=American

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

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

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

{
    "id": 40,
    "url": "https://ll.thespacedevs.com/2.0.0/astronaut/40/?format=api",
    "name": "Elliot See",
    "status": {
        "id": 5,
        "name": "Lost In Training"
    },
    "type": {
        "id": 2,
        "name": "Government"
    },
    "agency": {
        "id": 44,
        "url": "https://ll.thespacedevs.com/2.0.0/agencies/44/?format=api",
        "name": "National Aeronautics and Space Administration",
        "type": "Government"
    },
    "date_of_birth": "1927-07-23",
    "date_of_death": "1966-02-28",
    "nationality": "American",
    "twitter": null,
    "instagram": null,
    "bio": "Elliot McKay See Jr. was an American engineer, naval aviator, test pilot, and NASA astronaut. He was selected for NASA's second group of astronauts in 1962. See was chosen as the prime command pilot for what would have been his first space flight, Gemini 9. He was killed with Charles Bassett, his intended Gemini 9 crewmate, in a 1966 NASA trainer jet crash at the St. Louis, Missouri McDonnell Aircraft plant, where they were to take two weeks of space rendezvous simulator training.",
    "profile_image": "https://spacelaunchnow-prod-east.nyc3.digitaloceanspaces.com/media/images/elliot_see_image_20220911033946.jpeg",
    "profile_image_thumbnail": "https://spacelaunchnow-prod-east.nyc3.digitaloceanspaces.com/media/images/255bauto255d__image_thumbnail_20240305190534.jpeg",
    "wiki": "https://en.wikipedia.org/wiki/Elliot_See",
    "flights": [],
    "landings": [],
    "last_flight": null,
    "first_flight": null
}