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

{
    "id": 12,
    "url": "https://lldev.thespacedevs.com/2.0.0/astronaut/12/?format=api",
    "name": "Alexander Gerst",
    "status": {
        "id": 1,
        "name": "Active"
    },
    "type": {
        "id": 2,
        "name": "Government"
    },
    "agency": {
        "id": 27,
        "url": "https://lldev.thespacedevs.com/2.0.0/agencies/27/?format=api",
        "name": "European Space Agency",
        "type": "Multinational"
    },
    "date_of_birth": "1976-05-03",
    "date_of_death": null,
    "nationality": "German",
    "twitter": "https://twitter.com/Astro_Alex",
    "instagram": "https://www.instagram.com/astro_alex_esa/",
    "bio": "Alexander Gerst is a German European Space Agency astronaut and geophysicist, who was selected in 2009 to take part in space training.\r\nHe was part of the International Space Station Expedition 40 and 41 from May to November 2014.\r\nGerst returned to space on June 6, 2018, as part of Expedition 56/57 as the ISS Commander.",
    "profile_image": "https://thespacedevs-prod.nyc3.digitaloceanspaces.com/media/images/alexander2520gerst_image_20181127211820.jpg",
    "profile_image_thumbnail": "https://thespacedevs-prod.nyc3.digitaloceanspaces.com/media/images/255bauto255d__image_thumbnail_20240305190641.jpeg",
    "wiki": "https://en.wikipedia.org/wiki/Alexander_Gerst",
    "flights": [],
    "landings": [],
    "last_flight": "2018-06-06T11:12:41Z",
    "first_flight": "2014-05-28T19:57:41Z"
}