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

{
    "id": 16,
    "url": "https://lldev.thespacedevs.com/2.0.0/astronaut/16/?format=api",
    "name": "Christopher Ferguson",
    "status": {
        "id": 1,
        "name": "Active"
    },
    "type": {
        "id": 7,
        "name": "Commercial"
    },
    "agency": {
        "id": 80,
        "url": "https://lldev.thespacedevs.com/2.0.0/agencies/80/?format=api",
        "name": "Boeing",
        "type": "Commercial"
    },
    "date_of_birth": "1961-09-01",
    "date_of_death": null,
    "nationality": "American",
    "twitter": "https://twitter.com/Astro_Ferg",
    "instagram": null,
    "bio": "Christopher J. Ferguson is a Boeing commercial astronaut and a retired United States Navy Captain and NASA astronaut. He was the pilot of Space Shuttle Atlantis on his first mission to space, STS-115, which launched on September 9, 2006 and returned to Earth on September 21, 2006. He then commanded STS-126 aboard Space Shuttle Endeavour. In 2011, he was assigned as commander of STS-135, which was the final mission of the space shuttle program.\r\n\r\nOn December 9, 2011, he retired from NASA and is now currently director of Crew and Mission Operations for Boeing's Commercial Crew Program. In August 2018, Ferguson was assigned to the first test flight of the Boeing CST-100 Starliner.",
    "profile_image": "https://thespacedevs-prod.nyc3.digitaloceanspaces.com/media/images/christopher2520ferguson_image_20181127212540.jpg",
    "profile_image_thumbnail": "https://thespacedevs-prod.nyc3.digitaloceanspaces.com/media/images/255bauto255d__image_thumbnail_20240305190705.jpeg",
    "wiki": "https://en.wikipedia.org/wiki/Christopher_Ferguson",
    "flights": [],
    "landings": [],
    "last_flight": "2011-07-08T15:29:04Z",
    "first_flight": "2006-09-09T15:14:55Z"
}