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

{
    "id": 662,
    "url": "https://ll.thespacedevs.com/2.0.0/astronaut/662/?format=api",
    "name": "Johanna Maislinger",
    "status": {
        "id": 3,
        "name": "In-Training"
    },
    "type": {
        "id": 3,
        "name": "Private"
    },
    "agency": null,
    "date_of_birth": "1985-10-23",
    "date_of_death": null,
    "nationality": "Austrian",
    "twitter": null,
    "instagram": null,
    "bio": "Johanna Maislinger is an Austrian aviator and engineer, currently employed by with the German cargo carrier Aerologic. She will go to the International Space Station as a space tourist on Soyuz MS-20.",
    "profile_image": null,
    "profile_image_thumbnail": null,
    "wiki": "https://en.wikipedia.org/wiki/Johanna_Maislinger",
    "flights": [],
    "landings": [],
    "last_flight": null,
    "first_flight": null
}