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

{
  "id": 785,
  "url": "https://lldev.thespacedevs.com/2.0.0/astronaut/785/?format=api",
  "name": "Aleksandr Gorbunov",
  "status": {
    "id": 1,
    "name": "Active"
  },
  "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": "1990-05-24",
  "date_of_death": null,
  "nationality": "Russian",
  "twitter": null,
  "instagram": null,
  "bio": "Born in Zheleznogorsk, Kursk region, Russia, he studied engineering with qualifications in spacecraft and upper stages from the Moscow Aviation Institute. Gorbunov graduated from the military department with a specialty in operation and repair of aircraft, helicopters, and aircraft engines. Before being selected as a cosmonaut in 2018, he worked as an engineer for Rocket Space Corporation Energia and supported cargo spacecraft launches from the Baikonur cosmodrome.",
  "profile_image": "https://thespacedevs-dev.nyc3.digitaloceanspaces.com/media/images/aleksandr_gorbu_image_20241224223347.jpg",
  "profile_image_thumbnail": "https://thespacedevs-dev.nyc3.digitaloceanspaces.com/media/images/aleksandr_gorbu_image_thumbnail_20241224223347.jpeg",
  "wiki": null,
  "flights": [],
  "landings": [],
  "last_flight": "2024-09-28T17:17:21Z",
  "first_flight": "2024-09-28T17:17:21Z"
}