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

{
    "id": 211,
    "url": "https://lldev.thespacedevs.com/2.0.0/astronaut/211/?format=api",
    "name": "Soichi Noguchi",
    "status": {
        "id": 2,
        "name": "Retired"
    },
    "type": {
        "id": 2,
        "name": "Government"
    },
    "agency": {
        "id": 37,
        "url": "https://lldev.thespacedevs.com/2.0.0/agencies/37/?format=api",
        "name": "Japan Aerospace Exploration Agency",
        "type": "Government"
    },
    "date_of_birth": "1965-04-15",
    "date_of_death": null,
    "nationality": "Japanese",
    "twitter": "https://twitter.com/Astro_Soichi",
    "instagram": "https://www.instagram.com/astro.soichi/",
    "bio": "Soichi Noguchi (野口 聡一 Noguchi Sōichi, born 15 April 1965 in Yokohama, Japan) is a Japanese aeronautical engineer and former JAXA astronaut. His first spaceflight was as a Mission Specialist aboard STS-114 on 26 July 2005 for NASA's first \"return to flight\" Space Shuttle mission after the Columbia disaster. He was most recently in space as part of the Soyuz TMA-17 crew and Expedition 22 to the International Space Station (ISS), returning to Earth on 2 June 2010. He is the fifth Japanese astronaut to fly in space and the fourth to fly on the space shuttle.",
    "profile_image": "https://thespacedevs-prod.nyc3.digitaloceanspaces.com/media/images/soichi_noguchi_image_20200402084741.jpeg",
    "profile_image_thumbnail": "https://thespacedevs-prod.nyc3.digitaloceanspaces.com/media/images/255bauto255d__image_thumbnail_20240305191040.jpeg",
    "wiki": "https://en.wikipedia.org/wiki/Soichi_Noguchi",
    "flights": [],
    "landings": [],
    "last_flight": "2020-11-16T00:27:17Z",
    "first_flight": "2005-07-26T14:39:00Z"
}