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

{
    "id": 525,
    "url": "https://lldev.thespacedevs.com/2.0.0/astronaut/525/?format=api",
    "name": "Gregory Chamitoff",
    "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": "1962-08-06",
    "date_of_death": null,
    "nationality": "American",
    "twitter": "https://twitter.com/Astro_Taz",
    "instagram": null,
    "bio": "Gregory Errol Chamitoff is an engineer and NASA astronaut. He was assigned to Expedition 17 and flew to the International Space Station on STS-124, launching 31 May 2008. He was in space for 6 months, joining Expedition 18 after Expedition 17 left the station. He returned to Earth on the 30th of November 2008 aboard STS-126. Chamitoff served as a mission specialist on the STS-134 mission, which was the last flight of Space Shuttle Endeavour which delivered the Alpha Magnetic Spectrometer to the ISS.",
    "profile_image": "https://thespacedevs-prod.nyc3.digitaloceanspaces.com/media/images/gregory_chamito_image_20220911034240.jpeg",
    "profile_image_thumbnail": "https://thespacedevs-prod.nyc3.digitaloceanspaces.com/media/images/255bauto255d__image_thumbnail_20240305190336.jpeg",
    "wiki": "https://en.wikipedia.org/wiki/Gregory_Chamitoff",
    "flights": [],
    "landings": [],
    "last_flight": "2011-05-16T12:56:28Z",
    "first_flight": "2008-05-31T21:02:12Z"
}