API endpoint that allows Astronaut to be viewed.

GET: Return a list of all the existing astronauts.

MODE: Normal, List, LaunchList and Detailed /2.2.0/astronaut/?mode=detailed

FILTERS: Parameters - 'name', 'status', 'nationality', 'agency__name', 'agency__abbrev', 'date_of_birth', 'date_of_death', 'status_ids', 'is_human', 'type__id', 'has_flown', 'in_space' Example - /2.2.0/astronaut/?nationality=American

SEARCH EXAMPLE: /2.2.0/astronaut/?search=armstrong Searches through name, nationality and agency name

ORDERING: Fields - 'name', 'status', 'date_of_birth' Example - /2.2.0/astronaut/?order=name

GET /2.2.0/astronaut/559/?format=api
HTTP 200 OK
Allow: GET
Content-Type: application/json
Vary: Accept

{
    "id": 559,
    "url": "https://lldev.thespacedevs.com/2.2.0/astronaut/559/?format=api",
    "name": "Shannon Walker",
    "status": {
        "id": 2,
        "name": "Retired"
    },
    "type": {
        "id": 2,
        "name": "Government"
    },
    "in_space": false,
    "time_in_space": "P330DT13H40M24S",
    "eva_time": "P0D",
    "agency": {
        "id": 44,
        "url": "https://lldev.thespacedevs.com/2.2.0/agencies/44/?format=api",
        "name": "National Aeronautics and Space Administration",
        "type": "Government"
    },
    "age": 60,
    "date_of_birth": "1965-06-04",
    "date_of_death": null,
    "nationality": "American",
    "twitter": null,
    "instagram": null,
    "bio": "Walker served as a mission specialist during NASA’s SpaceX Crew-1 mission to the International Space Station in 2020, the first crewed operational Dragon spacecraft flight. She also was the first woman to fly aboard a Dragon spacecraft. Once aboard the orbiting laboratory, Walker joined the Expedition 64/65 crew and briefly commanded Expedition 65, logging 167 days in space before returning to Earth in May 2021.\r\n\r\nShe spent 163 days in space during her first spaceflight in 2010 as a member of the space station’s Expedition 24/25 crew. She was the pilot of the Soyuz TMA-19, which became the first crew to dock with the station’s Rassvet module.",
    "profile_image": "https://thespacedevs-dev.nyc3.digitaloceanspaces.com/media/images/shannon2520walker_image_20181203171551.jpg",
    "profile_image_thumbnail": "https://thespacedevs-dev.nyc3.digitaloceanspaces.com/media/images/255bauto255d__image_thumbnail_20240305190055.jpeg",
    "wiki": "https://en.wikipedia.org/wiki/Shannon_Walker",
    "flights": [],
    "landings": [],
    "flights_count": 2,
    "landings_count": 2,
    "spacewalks_count": 0,
    "last_flight": "2020-11-16T00:27:17Z",
    "first_flight": "2010-06-15T21:35:19Z",
    "spacewalks": []
}