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

{
  "id": 84,
  "url": "https://lldev.thespacedevs.com/2.0.0/astronaut/84/?format=api",
  "name": "Valery Bykovsky",
  "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": "1934-08-02",
  "date_of_death": "2019-03-27",
  "nationality": "Russian",
  "twitter": null,
  "instagram": null,
  "bio": "Valery Fyodorovich Bykovsky (Russian: Вале́рий Фёдорович Быко́вский; born 2 August 1934) is a retired Soviet cosmonaut who flew three manned space mission space flights: Vostok 5, Soyuz 22, and Soyuz 31. He was also backup for Vostok 3 and Soyuz 37.",
  "profile_image": "https://thespacedevs-dev.nyc3.digitaloceanspaces.com/media/images/valery2520bykovsky_image_20181128224024.jpg",
  "profile_image_thumbnail": "https://thespacedevs-dev.nyc3.digitaloceanspaces.com/media/images/255bauto255d__image_thumbnail_20240305185234.jpeg",
  "wiki": "https://en.wikipedia.org/wiki/Valery_Bykovsky",
  "flights": [],
  "landings": [],
  "last_flight": "1978-08-26T14:51:30Z",
  "first_flight": "1963-06-14T11:58:58Z"
}