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

{
    "id": 791,
    "url": "https://ll.thespacedevs.com/2.2.0/astronaut/791/?format=api",
    "name": "Mason Angel",
    "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": null,
    "date_of_birth": null,
    "date_of_death": null,
    "nationality": "American",
    "twitter": null,
    "instagram": null,
    "bio": "Mason is the founder of Industrious Ventures, a venture capital fund supporting early-stage companies that enable or progress new industrial revolutions. Mason is an active member in his family’s foundation and will use this mission to inspire children and advance partnerships with nonprofits focused on STEM in early education. He spends his free time skiing or hiking in the Rocky Mountains and can often be found with his dog Leo, named for low Earth orbit.",
    "profile_image": null,
    "profile_image_thumbnail": null,
    "wiki": null,
    "flights": [],
    "landings": [],
    "flights_count": 0,
    "landings_count": 0,
    "spacewalks_count": 0,
    "last_flight": null,
    "first_flight": null,
    "spacewalks": []
}