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

{
  "id": 805,
  "url": "https://lldev.thespacedevs.com/2.0.0/astronaut/805/?format=api",
  "name": "Sławosz Uznański",
  "status": {
    "id": 1,
    "name": "Active"
  },
  "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": "1984-04-12",
  "date_of_death": null,
  "nationality": "Polish",
  "twitter": "https://x.com/astro_slawosz",
  "instagram": "https://www.instagram.com/astro_slawosz/",
  "bio": "Sławosz Uznański is a Polish engineer working at the European Space Agency as a project astronaut since 2023 and formerly at CERN.",
  "profile_image": "https://thespacedevs-dev.nyc3.digitaloceanspaces.com/media/images/s25c52582awos_image_20240803064757.jpg",
  "profile_image_thumbnail": "https://thespacedevs-dev.nyc3.digitaloceanspaces.com/media/images/s25c52582awos_image_thumbnail_20240803064803.jpeg",
  "wiki": "https://en.wikipedia.org/wiki/S%C5%82awosz_Uzna%C5%84ski",
  "flights": [],
  "landings": [],
  "last_flight": "2025-06-25T06:31:52Z",
  "first_flight": "2025-06-25T06:31:52Z"
}