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

{
    "id": 199,
    "url": "https://lldev.thespacedevs.com/2.0.0/astronaut/199/?format=api",
    "name": "Andreas Mogensen",
    "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-11-02",
    "date_of_death": null,
    "nationality": "Danish",
    "twitter": "https://twitter.com/Astro_Andreas",
    "instagram": null,
    "bio": "Andreas Enevold Mogensen (born November 2, 1976) is a Danish engineer and astronaut. He was the first Dane to fly in space as part of the iriss programme\r\nOn September 2, 2015, Mogensen was launched with Soyuz TMA-18M to ISS, and landed with Soyuz TMA-16M ten days later. He was travelling with another visiting flight engineer, Aidyn Aimbetov. Among the items Andreas brought along were LEGO figures and a poster for Copenhagen Suborbitals.",
    "profile_image": "https://thespacedevs-prod.nyc3.digitaloceanspaces.com/media/images/andreas_mogense_image_20230826072839.jpg",
    "profile_image_thumbnail": "https://thespacedevs-prod.nyc3.digitaloceanspaces.com/media/images/255bauto255d__image_thumbnail_20240305190400.jpeg",
    "wiki": "https://en.wikipedia.org/wiki/Andreas_Mogensen",
    "flights": [],
    "landings": [],
    "last_flight": "2023-08-26T07:27:27Z",
    "first_flight": "2015-09-02T04:37:43Z"
}