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

{
    "id": 132,
    "url": "https://lldev.thespacedevs.com/2.0.0/astronaut/132/?format=api",
    "name": "Susan Helms",
    "status": {
        "id": 2,
        "name": "Retired"
    },
    "type": {
        "id": 2,
        "name": "Government"
    },
    "agency": {
        "id": 44,
        "url": "https://lldev.thespacedevs.com/2.0.0/agencies/44/?format=api",
        "name": "National Aeronautics and Space Administration",
        "type": "Government"
    },
    "date_of_birth": "1958-02-26",
    "date_of_death": null,
    "nationality": "American",
    "twitter": null,
    "instagram": null,
    "bio": "Susan Jane Helms is a retired lieutenant general in the United States Air Force and a former NASA astronaut. Helms was a crew member on five Space Shuttle missions and was a resident of the International Space Station (ISS) for over five months in 2001. While participating in ISS Expedition 2, she and Jim Voss conducted an 8-hour and 56 minute spacewalk, the world record.",
    "profile_image": "https://thespacedevs-prod.nyc3.digitaloceanspaces.com/media/images/susan2520helms_image_20181129204438.jpg",
    "profile_image_thumbnail": "https://thespacedevs-prod.nyc3.digitaloceanspaces.com/media/images/255bauto255d__image_thumbnail_20240305185213.jpeg",
    "wiki": "https://en.wikipedia.org/wiki/Susan_Helms",
    "flights": [],
    "landings": [],
    "last_flight": "2001-03-08T11:42:09Z",
    "first_flight": "1993-01-13T13:59:30Z"
}