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

{
  "id": 8,
  "url": "https://lldev.thespacedevs.com/2.0.0/astronaut/8/?format=api",
  "name": "Andrew R. Morgan",
  "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": "1976-02-05",
  "date_of_death": null,
  "nationality": "American",
  "twitter": "https://twitter.com/AstroDrewMorgan",
  "instagram": "https://www.instagram.com/astrodrewmorgan/",
  "bio": "NASA selected Morgan to join its 21st astronaut class in August 2013. He launched to the space station aboard a Soyuz MS-13 spacecraft on July 20, 2019, the same day as the 50th anniversary of the Apollo 11 Moon landing, from the Baikonur Cosmodrome in Kazakhstan.\r\n\r\nMorgan served as a flight engineer on International Space Station Expeditions 60, 61, and 62, contributing to hundreds of scientific experiments, technology demonstrations, and space station maintenance activities. He traveled over 115 million miles (about 185 million km) while completing more than 4,300 Earth orbits over the course of his mission.\r\n\r\nDuring his nine months aboard the station, Morgan conducted seven spacewalks for a total of 45 hours and 48 minutes of spacewalking time, breaking the record for a single spaceflight by a U.S. astronaut. Four of his spacewalks were dedicated to repairing the Alpha Magnetic Spectrometer, a particle physics detector designed to search for evidence of antimatter and dark matter.",
  "profile_image": "https://thespacedevs-dev.nyc3.digitaloceanspaces.com/media/images/andrew_r._morga_image_20220911034204.jpeg",
  "profile_image_thumbnail": "https://thespacedevs-dev.nyc3.digitaloceanspaces.com/media/images/255bauto255d__image_thumbnail_20240305185549.jpeg",
  "wiki": "https://en.wikipedia.org/wiki/Andrew_R._Morgan",
  "flights": [],
  "landings": [],
  "last_flight": "2019-07-20T16:28:21Z",
  "first_flight": "2019-07-20T16:28:21Z"
}