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

{
    "id": 431,
    "url": "https://lldev.thespacedevs.com/2.2.0/astronaut/431/?format=api",
    "name": "Nancy J. Currie-Gregg",
    "status": {
        "id": 2,
        "name": "Retired"
    },
    "type": {
        "id": 2,
        "name": "Government"
    },
    "in_space": false,
    "time_in_space": "P41DT15H48M7S",
    "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": 66,
    "date_of_birth": "1958-12-29",
    "date_of_death": null,
    "nationality": "American",
    "twitter": "https://twitter.com/Astro_Buckeye",
    "instagram": null,
    "bio": "Nancy Jane Currie-Gregg is an engineer, United States Army officer and a NASA astronaut. Currie-Gregg has served in the United States Army for over 22 years and holds the rank of colonel. With NASA, she has participated in four space shuttle missions: STS-57, STS-70, STS-88, and STS109, accruing 1,000 hours in space. She currently holds an appointment as an adjunct associate professor in the Department of Industrial & Systems Engineering at Texas A&M University.",
    "profile_image": "https://thespacedevs-prod.nyc3.digitaloceanspaces.com/media/images/nancy_j._currie_image_20220911033821.jpeg",
    "profile_image_thumbnail": "https://thespacedevs-prod.nyc3.digitaloceanspaces.com/media/images/255bauto255d__image_thumbnail_20240305190606.jpeg",
    "wiki": "https://en.wikipedia.org/wiki/Nancy_J._Currie-Gregg",
    "flights": [],
    "landings": [],
    "flights_count": 4,
    "landings_count": 4,
    "spacewalks_count": 0,
    "last_flight": "2002-03-01T11:22:02Z",
    "first_flight": "1993-06-21T13:07:22Z",
    "spacewalks": []
}