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

{
    "id": 89,
    "url": "https://lldev.thespacedevs.com/2.0.0/astronaut/89/?format=api",
    "name": "Jean-François Clervoy",
    "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": "1958-11-19",
    "date_of_death": null,
    "nationality": "French",
    "twitter": null,
    "instagram": null,
    "bio": "Jean-François André Clervoy (born 19 November 1958) is a French engineer and a CNES and ESA astronaut. He is a veteran of three NASA Space Shuttle missions.",
    "profile_image": "https://thespacedevs-prod.nyc3.digitaloceanspaces.com/media/images/jean-fran25c325a7ois2520clervoy_image_20181128224912.jpg",
    "profile_image_thumbnail": "https://thespacedevs-prod.nyc3.digitaloceanspaces.com/media/images/255bauto255d__image_thumbnail_20240305190448.jpeg",
    "wiki": "https://en.wikipedia.org/wiki/Jean-Fran%C3%A7ois_Clervoy",
    "flights": [],
    "landings": [],
    "last_flight": "1999-12-20T00:50:00Z",
    "first_flight": "1994-11-03T16:59:43Z"
}