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

{
    "id": 58,
    "url": "https://lldev.thespacedevs.com/2.2.0/astronaut/58/?format=api",
    "name": "Vladimir Aksyonov",
    "status": {
        "id": 2,
        "name": "Retired"
    },
    "type": {
        "id": 2,
        "name": "Government"
    },
    "in_space": false,
    "time_in_space": "P11DT20H11M47S",
    "eva_time": "P0D",
    "agency": {
        "id": 63,
        "url": "https://lldev.thespacedevs.com/2.2.0/agencies/63/?format=api",
        "name": "Russian Federal Space Agency (ROSCOSMOS)",
        "type": "Government"
    },
    "age": 90,
    "date_of_birth": "1935-02-01",
    "date_of_death": null,
    "nationality": "Russian",
    "twitter": null,
    "instagram": null,
    "bio": "Aksyonov was selected as cosmonaut on 3 March 1973. He was awarded the title of the Hero of the Soviet Union on two occasions. He retired on 17 October 1988.\r\n\r\nFlew as Flight Engineer on Soyuz 22 and Soyuz T-2.",
    "profile_image": "https://thespacedevs-prod.nyc3.digitaloceanspaces.com/media/images/vladimir2520aksyonov_image_20181128214648.jpg",
    "profile_image_thumbnail": "https://thespacedevs-prod.nyc3.digitaloceanspaces.com/media/images/255bauto255d__image_thumbnail_20240305190600.jpeg",
    "wiki": null,
    "flights": [],
    "landings": [],
    "flights_count": 2,
    "landings_count": 2,
    "spacewalks_count": 0,
    "last_flight": "1980-06-05T14:19:30Z",
    "first_flight": "1976-09-15T09:48:30Z",
    "spacewalks": []
}