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

{
  "id": 214,
  "url": "https://lldev.thespacedevs.com/2.0.0/astronaut/214/?format=api",
  "name": "Takuya Onishi",
  "status": {
    "id": 1,
    "name": "Active"
  },
  "type": {
    "id": 2,
    "name": "Government"
  },
  "agency": {
    "id": 37,
    "url": "https://lldev.thespacedevs.com/2.0.0/agencies/37/?format=api",
    "name": "Japan Aerospace Exploration Agency",
    "type": "Government"
  },
  "date_of_birth": "1975-12-22",
  "date_of_death": null,
  "nationality": "Japanese",
  "twitter": "https://twitter.com/Astro_Onishi",
  "instagram": null,
  "bio": "Takuya Onishi (大西 卓哉 Ōnishi Takuya, born 1975) is a Japanese astronaut selected for the Japan Aerospace Exploration Agency (JAXA) in 2009.[1] He spent four months onboard the International Space Station in 2016.",
  "profile_image": "https://thespacedevs-dev.nyc3.digitaloceanspaces.com/media/images/takuya2520onishi_image_20181201184314.jpg",
  "profile_image_thumbnail": "https://thespacedevs-dev.nyc3.digitaloceanspaces.com/media/images/255bauto255d__image_thumbnail_20240305190231.jpeg",
  "wiki": "https://en.wikipedia.org/wiki/Takuya_Onishi",
  "flights": [],
  "landings": [],
  "last_flight": "2025-03-14T23:03:48Z",
  "first_flight": "2016-07-07T01:36:40Z"
}