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

{
    "id": 230,
    "url": "https://lldev.thespacedevs.com/2.0.0/astronaut/230/?format=api",
    "name": "Thomas Reiter",
    "status": {
        "id": 2,
        "name": "Retired"
    },
    "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-05-23",
    "date_of_death": null,
    "nationality": "German",
    "twitter": null,
    "instagram": null,
    "bio": "Thomas Arthur Reiter (born 23 May 1958 in Frankfurt, West Germany) is a retired European astronaut and is a Brigadier General in the German Air Force currently working as ESA Interagency Coordinator and Advisor to the Director General at the European Space Agency (ESA). He was one of the top 25 astronauts in terms of total time in space. With his wife and two sons he lives near Oldenburg in Lower Saxony.",
    "profile_image": "https://thespacedevs-prod.nyc3.digitaloceanspaces.com/media/images/thomas2520reiter_image_20181201213215.jpg",
    "profile_image_thumbnail": "https://thespacedevs-prod.nyc3.digitaloceanspaces.com/media/images/255bauto255d__image_thumbnail_20240305190151.jpeg",
    "wiki": "https://en.wikipedia.org/wiki/Thomas_Reiter",
    "flights": [],
    "landings": [],
    "last_flight": "2006-07-04T18:37:55Z",
    "first_flight": "1995-09-03T09:00:23Z"
}