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

{
  "id": 239,
  "url": "https://lldev.thespacedevs.com/2.0.0/astronaut/239/?format=api",
  "name": "Aleksandr Samokutyayev",
  "status": {
    "id": 2,
    "name": "Retired"
  },
  "type": {
    "id": 2,
    "name": "Government"
  },
  "agency": {
    "id": 63,
    "url": "https://lldev.thespacedevs.com/2.0.0/agencies/63/?format=api",
    "name": "Russian Federal Space Agency (ROSCOSMOS)",
    "type": "Government"
  },
  "date_of_birth": "1970-03-13",
  "date_of_death": null,
  "nationality": "Russian",
  "twitter": null,
  "instagram": null,
  "bio": "Aleksandr Mikhailovich Samokutyayev (Александр Михайлович Самокутяев – born 13 March 1970 in Penza / Penza Oblast / Russian SFSR) is a former Russian cosmonaut. Samokutyayev served as a Flight Engineer for the International Space Station (ISS) long duration Expedition 27/28 missions. He also served as the Soyuz TMA-21 commander. He most recently served on the Soyuz TMA-14M Expedition 41/42 crew aboard the ISS. He was hired as a cosmonaut in the summer of 2003.",
  "profile_image": "https://thespacedevs-dev.nyc3.digitaloceanspaces.com/media/images/aleksandr2520samokutyayev_image_20181201214845.jpg",
  "profile_image_thumbnail": "https://thespacedevs-dev.nyc3.digitaloceanspaces.com/media/images/255bauto255d__image_thumbnail_20240305185934.jpeg",
  "wiki": "https://en.wikipedia.org/wiki/Aleksandr_Samokutyayev",
  "flights": [],
  "landings": [],
  "last_flight": "2014-09-25T20:25:00Z",
  "first_flight": "2011-04-04T22:18:20Z"
}