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

{
    "id": 262,
    "url": "https://lldev.thespacedevs.com/2.2.0/astronaut/262/?format=api",
    "name": "Evgeny Tarelkin",
    "status": {
        "id": 2,
        "name": "Retired"
    },
    "type": {
        "id": 2,
        "name": "Government"
    },
    "in_space": false,
    "time_in_space": "P143DT16H19M49S",
    "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": 50,
    "date_of_birth": "1974-12-29",
    "date_of_death": null,
    "nationality": "Russian",
    "twitter": null,
    "instagram": null,
    "bio": "Evgeny Igorevich Tarelkin (Russian: Евгений Игоревич Тарелкин; born December 29, 1974) is a Russian cosmonaut. He was selected as part of the TsPK-13 group in 2003.\r\nHe served in the Air Force until his selection as a cosmonaut as part of the TsPK-13 selection group in 2003, completing basic training in 2005. Tarelkin made his first flight into space in October 2012 as a member of the Soyuz TMA-06M crew, during which he spent six months aboard the International Space Station as part of the Expedition 33/34 crews and returned on March 16, 2013.",
    "profile_image": "https://thespacedevs-prod.nyc3.digitaloceanspaces.com/media/images/evgeny2520tarelkin_image_20181201222028.jpg",
    "profile_image_thumbnail": "https://thespacedevs-prod.nyc3.digitaloceanspaces.com/media/images/255bauto255d__image_thumbnail_20240305190637.jpeg",
    "wiki": "https://en.wikipedia.org/wiki/Evgeny_Tarelkin",
    "flights": [],
    "landings": [],
    "flights_count": 1,
    "landings_count": 1,
    "spacewalks_count": 0,
    "last_flight": "2012-10-23T10:51:11Z",
    "first_flight": "2012-10-23T10:51:11Z",
    "spacewalks": []
}