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

{
    "id": 792,
    "url": "https://ll.thespacedevs.com/2.0.0/astronaut/792/?format=api",
    "name": "Sylvain Chiron",
    "status": {
        "id": 14,
        "name": "Occasional Spaceflight"
    },
    "type": {
        "id": 3,
        "name": "Private"
    },
    "agency": {
        "id": 141,
        "url": "https://ll.thespacedevs.com/2.0.0/agencies/141/?format=api",
        "name": "Blue Origin",
        "type": "Commercial"
    },
    "date_of_birth": null,
    "date_of_death": null,
    "nationality": "France",
    "twitter": null,
    "instagram": null,
    "bio": "Sylvain is the founder of the Brasserie Mont Blanc, one of the largest craft breweries in France. Sylvain was born in the French Alps and is a lifelong aviator and skier. He earned his pilot’s license at age 16. After spending several summers in Florida taking additional flying lessons and watching Space Shuttle launches, Sylvain entered mandatory service in the French military, where he served as a ski instructor for the French Air Force and NATO pilots. Following the military, he pursued an international MBA at Temple University and moved to Tokyo to study business in Japan. Sylvain and his family are based in Savoy, France, where he’s also involved in philanthropy focused on children’s education and nature preservation.",
    "profile_image": null,
    "profile_image_thumbnail": null,
    "wiki": null,
    "flights": [],
    "landings": [],
    "last_flight": null,
    "first_flight": null
}