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

{
  "id": 804,
  "url": "https://lldev.thespacedevs.com/2.0.0/astronaut/804/?format=api",
  "name": "Shubhanshu Shukla",
  "status": {
    "id": 1,
    "name": "Active"
  },
  "type": {
    "id": 1,
    "name": "Unknown"
  },
  "agency": {
    "id": 31,
    "url": "https://lldev.thespacedevs.com/2.0.0/agencies/31/?format=api",
    "name": "Indian Space Research Organization",
    "type": "Government"
  },
  "date_of_birth": "1985-10-10",
  "date_of_death": null,
  "nationality": "Indian",
  "twitter": null,
  "instagram": null,
  "bio": "Indian astronaut part of the first group of the Indian domestic human spaceflight program.",
  "profile_image": "https://thespacedevs-dev.nyc3.digitaloceanspaces.com/media/images/shubhanshu_shuk_image_20240803064210.jpg",
  "profile_image_thumbnail": "https://thespacedevs-dev.nyc3.digitaloceanspaces.com/media/images/shubhanshu_shuk_image_thumbnail_20240803064212.jpeg",
  "wiki": null,
  "flights": [],
  "landings": [],
  "last_flight": "2025-06-25T06:31:52Z",
  "first_flight": "2025-06-25T06:31:52Z"
}