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

{
    "id": 799,
    "url": "https://lldev.thespacedevs.com/2.2.0/astronaut/799/?format=api",
    "name": "Tuva Atasever",
    "status": {
        "id": 1,
        "name": "Active"
    },
    "type": {
        "id": 2,
        "name": "Government"
    },
    "in_space": false,
    "time_in_space": "PT15M",
    "eva_time": "P0D",
    "agency": {
        "id": 72,
        "url": "https://lldev.thespacedevs.com/2.2.0/agencies/72/?format=api",
        "name": "Turkmenistan National Space Agency",
        "type": "Government"
    },
    "age": 32,
    "date_of_birth": "1992-08-12",
    "date_of_death": null,
    "nationality": "Turkish",
    "twitter": null,
    "instagram": null,
    "bio": "Tuva Cihangir Atasever is the second Turkish astronaut of the Turkish Space Agency. He was a backup crew member for Axiom Mission 3, and he flew on Galactic 07 in June 2024.",
    "profile_image": "https://thespacedevs-prod.nyc3.digitaloceanspaces.com/media/images/tuva_atasever_p_image_20240609071926.png",
    "profile_image_thumbnail": "https://thespacedevs-prod.nyc3.digitaloceanspaces.com/media/images/tuva_atasever_p_image_thumbnail_20240609071926.png",
    "wiki": "https://en.wikipedia.org/wiki/Tuva_Cihangir_Atasever",
    "flights": [],
    "landings": [],
    "flights_count": 1,
    "landings_count": 1,
    "spacewalks_count": 0,
    "last_flight": "2024-06-08T15:26:00Z",
    "first_flight": "2024-06-08T15:26:00Z",
    "spacewalks": []
}