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

{
    "id": 109,
    "url": "https://lldev.thespacedevs.com/2.0.0/astronaut/109/?format=api",
    "name": "Reinhard Furrer",
    "status": {
        "id": 11,
        "name": "Deceased"
    },
    "type": {
        "id": 2,
        "name": "Government"
    },
    "agency": {
        "id": 29,
        "url": "https://lldev.thespacedevs.com/2.0.0/agencies/29/?format=api",
        "name": "German Aerospace Center",
        "type": "Government"
    },
    "date_of_birth": "1940-11-25",
    "date_of_death": "1995-09-09",
    "nationality": "German",
    "twitter": null,
    "instagram": null,
    "bio": "Prof. Dr. Reinhard Alfred Furrer (25 November 1940 – 9 September 1995) was a German physicist and astronaut.\r\n\r\nIn 1977 Furrer applied for selection as an astronaut for the first Spacelab mission. He made it into the final round of candidates, although Ulf Merbold was finally selected. In 1982, the astronauts for the first German Spacelab mission were selected from the finalists for the first mission, and Furrer was one of the two chosen. He was a payload specialist on STS-61-A (D1), which was launched on 30 October 1985. The other payload specialists on the flight were Ernst Messerschmid and Wubbo Ockels (Netherlands).",
    "profile_image": "https://thespacedevs-prod.nyc3.digitaloceanspaces.com/media/images/reinhard2520furrer_image_20181128231842.jpg",
    "profile_image_thumbnail": "https://thespacedevs-prod.nyc3.digitaloceanspaces.com/media/images/255bauto255d__image_thumbnail_20240305185627.jpeg",
    "wiki": "https://en.wikipedia.org/wiki/Reinhard_Furrer",
    "flights": [],
    "landings": [],
    "last_flight": "1985-10-30T17:00:00Z",
    "first_flight": "1985-10-30T17:00:00Z"
}