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

{
    "id": 790,
    "url": "https://ll.thespacedevs.com/2.2.0/astronaut/790/?format=api",
    "name": "Edward Joseph Dwight Jr",
    "status": {
        "id": 14,
        "name": "Occasional Spaceflight"
    },
    "type": {
        "id": 3,
        "name": "Private"
    },
    "in_space": false,
    "time_in_space": "P0D",
    "eva_time": "P0D",
    "agency": {
        "id": 141,
        "url": "https://ll.thespacedevs.com/2.2.0/agencies/141/?format=api",
        "name": "Blue Origin",
        "type": "Commercial"
    },
    "age": 90,
    "date_of_birth": "1933-09-09",
    "date_of_death": null,
    "nationality": "American",
    "twitter": null,
    "instagram": null,
    "bio": "In 1961, Ed was chosen by President John F. Kennedy to enter training at the Aerospace Research Pilot School (ARPS), an elite U.S. Air Force flight training program known as a pathway for entering the NASA Astronaut Corps. In 1963, after successfully completing the ARPS program, Ed was recommended by the U.S. Air Force for the NASA Astronaut Corps but ultimately was not among those selected. He entered private life in 1966 and spent a decade as an entrepreneur before dedicating his life’s work to using sculpture as a medium to tell the story of Black history. He’s spent the last five decades creating large-scale monuments of iconic Black figures, including Dr. Martin Luther King Jr., Frederick Douglass, and Harriet Tubman and the Underground Railroad, among many others. His more than 130 public works are installed in museums and public spaces across the U.S. and Canada. Ed was born in 1933 and raised in Kansas City, KS.",
    "profile_image": null,
    "profile_image_thumbnail": null,
    "wiki": "https://en.wikipedia.org/wiki/Ed_Dwight",
    "flights": [],
    "landings": [],
    "flights_count": 0,
    "landings_count": 0,
    "spacewalks_count": 0,
    "last_flight": null,
    "first_flight": null,
    "spacewalks": []
}