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

{
  "id": 918,
  "url": "https://lldev.thespacedevs.com/2.0.0/astronaut/918/?format=api",
  "name": "Aleš Svoboda",
  "status": {
    "id": 3,
    "name": "In-Training"
  },
  "type": {
    "id": 2,
    "name": "Government"
  },
  "agency": {
    "id": 27,
    "url": "https://lldev.thespacedevs.com/2.0.0/agencies/27/?format=api",
    "name": "European Space Agency",
    "type": "Multinational"
  },
  "date_of_birth": "1986-06-19",
  "date_of_death": null,
  "nationality": "Czech",
  "twitter": "https://x.com/astro_ales",
  "instagram": "https://www.instagram.com/astro_ales/",
  "bio": "Aleš Svoboda is a Czech fighter pilot and astronaut. In November 2022, he was selected as member of the European Space Agency reserve team of astronauts, thus he is the first astronaut of the independent Czech Republic.",
  "profile_image": "https://thespacedevs-dev.nyc3.digitaloceanspaces.com/media/images/ale25c525a1_s_image_20260612081413.jpg",
  "profile_image_thumbnail": "https://thespacedevs-dev.nyc3.digitaloceanspaces.com/media/images/ale25c525a1_s_image_thumbnail_20260612081414.jpeg",
  "wiki": "https://en.wikipedia.org/wiki/Ale%C5%A1_Svoboda_(astronaut)",
  "flights": [],
  "landings": [],
  "last_flight": null,
  "first_flight": null
}