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

{
  "id": 18,
  "url": "https://lldev.thespacedevs.com/2.0.0/astronaut/18/?format=api",
  "name": "Andrew J. Feustel",
  "status": {
    "id": 2,
    "name": "Retired"
  },
  "type": {
    "id": 2,
    "name": "Government"
  },
  "agency": {
    "id": 44,
    "url": "https://lldev.thespacedevs.com/2.0.0/agencies/44/?format=api",
    "name": "National Aeronautics and Space Administration",
    "type": "Government"
  },
  "date_of_birth": "1965-08-25",
  "date_of_death": null,
  "nationality": "American",
  "twitter": "https://twitter.com/Astro_Feustel",
  "instagram": "https://www.instagram.com/astro_feustel/",
  "bio": "Andrew Jay \"Drew\" Feustel is a geophysicist and a NASA astronaut. Following several years working as a geophysicist, Feustel was selected as an astronaut candidate by NASA in July 2000. His first spaceflight in May 2009, STS-125, lasted just under 13 days. This was a mission with six other astronauts to repair the Hubble Space Telescope, aboard Space Shuttle Atlantis. Feustel performed three spacewalks during the mission. His second spaceflight was STS-134, which launched on May 16, 2011 and landed on June 1, 2011. STS-134 was the penultimate Space Shuttle flight. Feustel returned to space on March 21, 2018 on Soyuz MS-08 with Expedition 55/56. For expedition 56, he commanded the International Space Station, before handing over to Alexander Gerst on October 3, 2018.",
  "profile_image": "https://thespacedevs-dev.nyc3.digitaloceanspaces.com/media/images/andrew2520j.2520feustel_image_20181127212906.jpg",
  "profile_image_thumbnail": "https://thespacedevs-dev.nyc3.digitaloceanspaces.com/media/images/255bauto255d__image_thumbnail_20240305190321.jpeg",
  "wiki": "https://en.wikipedia.org/wiki/Andrew_J._Feustel",
  "flights": [],
  "landings": [],
  "last_flight": "2018-03-21T17:44:23Z",
  "first_flight": "2009-05-11T18:01:56Z"
}