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

{
    "id": 793,
    "url": "https://ll.thespacedevs.com/2.2.0/astronaut/793/?format=api",
    "name": "Kenneth Lafferty Hess",
    "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": 71,
    "date_of_birth": "1953-01-22",
    "date_of_death": null,
    "nationality": "American",
    "twitter": null,
    "instagram": null,
    "bio": "Ken is a software engineer and entrepreneur who shaped today's technology-based family history industry when he developed the Family Tree Maker product line in the 1990s. The company was acquired by Ancestry.com in 2003. In 2001, Ken gave back by founding Science Buddies, a K-12 nonprofit created to level the playing field and improve STEM literacy by inspiring students through free, personalized, hands-on projects in all areas of science, including space exploration. Science Buddies has reached one-quarter billion users. Ken’s lifelong passion for space exploration is in his DNA, with numerous early American pioneers in his mother’s lineage and many engineers and technicians in his father’s.",
    "profile_image": null,
    "profile_image_thumbnail": null,
    "wiki": "https://en.wikipedia.org/wiki/Kenneth_Hess",
    "flights": [],
    "landings": [],
    "flights_count": 0,
    "landings_count": 0,
    "spacewalks_count": 0,
    "last_flight": null,
    "first_flight": null,
    "spacewalks": []
}