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

{
    "id": 218,
    "url": "https://lldev.thespacedevs.com/2.0.0/astronaut/218/?format=api",
    "name": "Luca Parmitano",
    "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-09-27",
    "date_of_death": null,
    "nationality": "Italian",
    "twitter": "https://twitter.com/astro_luca",
    "instagram": "https://www.instagram.com/astro_luca/",
    "bio": "Luca Parmitano (born 27 September 1976 in PaternĂ², Sicily) is an Italian engineer and astronaut in the European Astronaut Corps for the European Space Agency (ESA). The astronauts work on missions at the International Space Station. He was selected as an ESA astronaut in May 2009. Parmitano is also a Lieutenant Colonel and pilot for the Italian Air Force. Parmitano is the youngest astronaut to undertake a long-duration mission, at 36 years and eight months old on the launch day of his mission.",
    "profile_image": "https://thespacedevs-prod.nyc3.digitaloceanspaces.com/media/images/luca2520parmitano_image_20191231114250.jpeg",
    "profile_image_thumbnail": "https://thespacedevs-prod.nyc3.digitaloceanspaces.com/media/images/255bauto255d__image_thumbnail_20240305190918.jpeg",
    "wiki": "https://en.wikipedia.org/wiki/Luca_Parmitano",
    "flights": [],
    "landings": [],
    "last_flight": "2019-07-20T16:28:21Z",
    "first_flight": "2013-05-28T20:31:24Z"
}