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

{
    "id": 674,
    "url": "https://lldev.thespacedevs.com/2.2.0/astronaut/674/?format=api",
    "name": "Doug Shane",
    "status": {
        "id": 2,
        "name": "Retired"
    },
    "type": {
        "id": 3,
        "name": "Private"
    },
    "in_space": false,
    "time_in_space": "P0D",
    "eva_time": "P0D",
    "agency": {
        "id": 1024,
        "url": "https://lldev.thespacedevs.com/2.2.0/agencies/1024/?format=api",
        "name": "Virgin Galactic",
        "type": "Private"
    },
    "age": 65,
    "date_of_birth": "1960-01-01",
    "date_of_death": null,
    "nationality": "American",
    "twitter": null,
    "instagram": null,
    "bio": "Douglas Bennett Shane is President of The Spaceship Company, as well as an American test pilot who has trained as a commercial astronaut. He was a member of the Scaled Composites astronaut team and one of the test pilots for SpaceShipOne, the experimental spaceplane developed by Scaled Composites. Shane worked as the operations director on the SpaceShipOne project in addition to being one of the program pilots, and later served as President of Scaled Composites from 2008 through early 2013.\r\n\r\nBirthday is unknown.",
    "profile_image": "https://thespacedevs-prod.nyc3.digitaloceanspaces.com/media/images/doug_shane_image_20210522150034.jpg",
    "profile_image_thumbnail": "https://thespacedevs-prod.nyc3.digitaloceanspaces.com/media/images/255bauto255d__image_thumbnail_20240305190438.jpeg",
    "wiki": "https://en.wikipedia.org/wiki/Doug_Shane",
    "flights": [],
    "landings": [],
    "flights_count": 4,
    "landings_count": 4,
    "spacewalks_count": 0,
    "last_flight": "2011-06-14T12:00:00Z",
    "first_flight": "2011-04-22T12:00:00Z",
    "spacewalks": []
}