API endpoint that allows Astronaut to be viewed.

GET: Return a list of all the existing astronauts.

MODE: Normal, List, LaunchList and Detailed /2.0.0/astronaut/?mode=detailed

FILTERS: Parameters - 'name', 'status', 'nationality', 'agency__name', 'agency__abbrev', 'date_of_birth', 'date_of_death', 'status_ids' Example - /2.0.0/astronaut/?nationality=American

SEARCH EXAMPLE: /2.0.0/astronaut/?search=armstrong Searches through name, nationality and agency name

ORDERING: Fields - 'name', 'status', 'date_of_birth' Example - /2.0.0/astronaut/?order=name

GET /2.0.0/astronaut/276/?format=api
HTTP 200 OK
Allow: GET
Content-Type: application/json
Vary: Accept

{
    "id": 276,
    "url": "https://lldev.thespacedevs.com/2.0.0/astronaut/276/?format=api",
    "name": "Franz Viehböck",
    "status": {
        "id": 2,
        "name": "Retired"
    },
    "type": {
        "id": 2,
        "name": "Government"
    },
    "agency": {
        "id": 8,
        "url": "https://lldev.thespacedevs.com/2.0.0/agencies/8/?format=api",
        "name": "Austrian Space Agency",
        "type": "Government"
    },
    "date_of_birth": "1960-08-24",
    "date_of_death": null,
    "nationality": "Austrian",
    "twitter": null,
    "instagram": null,
    "bio": "Franz Artur Viehböck (born August 24, 1960 in Vienna) is an Austrian electrical engineer, and was Austria's first cosmonaut. He was titulated „Austronaut“ by his country's media. He visited the Mir space station in 1991 aboard Soyuz TM-13, returning aboard Soyuz TM-12 after spending just over a week in space.",
    "profile_image": "https://thespacedevs-prod.nyc3.digitaloceanspaces.com/media/images/franz2520viehb25c325b6ck_image_20181201223901.jpg",
    "profile_image_thumbnail": "https://thespacedevs-prod.nyc3.digitaloceanspaces.com/media/images/255bauto255d__image_thumbnail_20240305185609.jpeg",
    "wiki": "https://en.wikipedia.org/wiki/Franz_Viehb%C3%B6ck",
    "flights": [],
    "landings": [],
    "last_flight": "1991-10-02T05:59:38Z",
    "first_flight": "1991-10-02T05:59:38Z"
}