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

{
    "id": 711,
    "url": "https://ll.thespacedevs.com/2.0.0/astronaut/711/?format=api",
    "name": "Andre Douglas",
    "status": {
        "id": 3,
        "name": "In-Training"
    },
    "type": {
        "id": 2,
        "name": "Government"
    },
    "agency": {
        "id": 44,
        "url": "https://ll.thespacedevs.com/2.0.0/agencies/44/?format=api",
        "name": "National Aeronautics and Space Administration",
        "type": "Government"
    },
    "date_of_birth": null,
    "date_of_death": null,
    "nationality": "",
    "twitter": null,
    "instagram": null,
    "bio": "Andre Douglas is a Virginia native. He earned a bachelor’s degree in mechanical engineering from the U.S. Coast Guard Academy, a master’s degree in mechanical engineering from the University of Michigan, a master’s degree in naval architecture and marine engineering from the University of Michigan, a master’s degree in electrical and computer engineering from Johns Hopkins University, and a doctorate in systems engineering from the George Washington University. Douglas served in the U.S. Coast Guard as a naval architect, salvage engineer, damage control assistant, and officer of the deck. He most recently was a senior staff member at the Johns Hopkins University Applied Physics Lab, working on maritime robotics, planetary defense, and space exploration missions for NASA.",
    "profile_image": "https://spacelaunchnow-prod-east.nyc3.digitaloceanspaces.com/media/images/andre_douglas_image_20211206185403.jpg",
    "profile_image_thumbnail": "https://spacelaunchnow-prod-east.nyc3.digitaloceanspaces.com/media/images/255bauto255d__image_thumbnail_20240305190123.jpeg",
    "wiki": "https://en.wikipedia.org/wiki/Andre_Douglas",
    "flights": [],
    "landings": [],
    "last_flight": null,
    "first_flight": null
}