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

{
  "id": 117,
  "url": "https://lldev.thespacedevs.com/2.0.0/astronaut/117/?format=api",
  "name": "Aleksei Gubarev",
  "status": {
    "id": 11,
    "name": "Deceased"
  },
  "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": "1931-03-29",
  "date_of_death": "2015-02-21",
  "nationality": "Russian",
  "twitter": null,
  "instagram": null,
  "bio": "Aleksei Aleksandrovich Gubarev (Russian: Алексе́й Алекса́ндрович Гу́барев; 29 March 1931 – 21 February 2015) was a Soviet cosmonaut who flew on two space flights: Soyuz 17 and Soyuz 28.",
  "profile_image": "https://thespacedevs-dev.nyc3.digitaloceanspaces.com/media/images/aleksei2520gubarev_image_20181128233440.jpg",
  "profile_image_thumbnail": "https://thespacedevs-dev.nyc3.digitaloceanspaces.com/media/images/255bauto255d__image_thumbnail_20240305190259.jpeg",
  "wiki": "https://en.wikipedia.org/wiki/Aleksei_Gubarev",
  "flights": [],
  "landings": [],
  "last_flight": "1978-03-02T15:28:10Z",
  "first_flight": "1975-01-10T21:43:37Z"
}