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

{
    "id": 164,
    "url": "https://ll.thespacedevs.com/2.2.0/astronaut/164/?format=api",
    "name": "Pyotr Kolodin",
    "status": {
        "id": 2,
        "name": "Retired"
    },
    "type": {
        "id": 2,
        "name": "Government"
    },
    "in_space": false,
    "time_in_space": "P0D",
    "eva_time": "P0D",
    "agency": {
        "id": 63,
        "url": "https://ll.thespacedevs.com/2.2.0/agencies/63/?format=api",
        "name": "Russian Federal Space Agency (ROSCOSMOS)",
        "type": "Government"
    },
    "age": 94,
    "date_of_birth": "1930-09-23",
    "date_of_death": null,
    "nationality": "Ukrainian",
    "twitter": null,
    "instagram": null,
    "bio": "Pyotr Ivanovich Kolodin (Russian: Пётр Иванович Колодин; (born September 23, 1930) is a former Soviet cosmonaut. Although he retired in 1983 without flying in space, Kolodin served non-flying assignments on several spaceflights.",
    "profile_image": "https://thespacedevs-prod.nyc3.digitaloceanspaces.com/media/images/pyotr2520kolodin_image_20181129232754.jpg",
    "profile_image_thumbnail": "https://thespacedevs-prod.nyc3.digitaloceanspaces.com/media/images/255bauto255d__image_thumbnail_20240305190614.jpeg",
    "wiki": "https://en.wikipedia.org/wiki/Pyotr_Kolodin",
    "flights": [],
    "landings": [],
    "flights_count": 0,
    "landings_count": 0,
    "spacewalks_count": 0,
    "last_flight": null,
    "first_flight": null,
    "spacewalks": []
}