API endpoint that allows Astronaut to be viewed.

GET: Return a list of all the existing astronauts.

MODE: Normal, List, LaunchList and Detailed /2.2.0/astronaut/?mode=detailed

FILTERS: Parameters - 'name', 'status', 'nationality', 'agency__name', 'agency__abbrev', 'date_of_birth', 'date_of_death', 'status_ids', 'is_human', 'type__id', 'has_flown', 'in_space' Example - /2.2.0/astronaut/?nationality=American

SEARCH EXAMPLE: /2.2.0/astronaut/?search=armstrong Searches through name, nationality and agency name

ORDERING: Fields - 'name', 'status', 'date_of_birth' Example - /2.2.0/astronaut/?order=name

GET /2.2.0/astronaut/288/?format=api
HTTP 200 OK
Allow: GET
Content-Type: application/json
Vary: Accept

{
  "id": 288,
  "url": "https://lldev.thespacedevs.com/2.2.0/astronaut/288/?format=api",
  "name": "Dafydd Williams",
  "status": {
    "id": 2,
    "name": "Retired"
  },
  "type": {
    "id": 2,
    "name": "Government"
  },
  "in_space": false,
  "time_in_space": "P28DT15H46M18S",
  "eva_time": "PT17H30M",
  "agency": {
    "id": 16,
    "url": "https://lldev.thespacedevs.com/2.2.0/agencies/16/?format=api",
    "name": "Canadian Space Agency",
    "type": "Government"
  },
  "age": 71,
  "date_of_birth": "1954-05-16",
  "date_of_death": null,
  "nationality": "Canadian",
  "twitter": null,
  "instagram": null,
  "bio": "Dafydd Rhys \"Dave\" Williams OC (born May 16, 1954) is a Canadian physician, public speaker and a retired CSA astronaut. Williams was a mission specialist on two space shuttle missions. His first spaceflight, STS-90 in 1998, was a 16-day mission aboard Space Shuttle Columbia dedicated to neuroscience research. His second flight, STS-118 in August 2007, was flown by Space Shuttle Endeavour to the International Space Station. During that mission he performed three spacewalks, becoming the third Canadian to perform a spacewalk and setting a Canadian record for total number of spacewalks. These spacewalks combined for a total duration of 17 hours and 47 minutes.",
  "profile_image": "https://thespacedevs-dev.nyc3.digitaloceanspaces.com/media/images/dafydd2520williams_image_20181201225440.jpg",
  "profile_image_thumbnail": "https://thespacedevs-dev.nyc3.digitaloceanspaces.com/media/images/255bauto255d__image_thumbnail_20240305185541.jpeg",
  "wiki": "https://en.wikipedia.org/wiki/Dafydd_Williams",
  "flights": [],
  "landings": [],
  "flights_count": 2,
  "landings_count": 2,
  "spacewalks_count": 3,
  "last_flight": "2007-08-08T22:36:42Z",
  "first_flight": "1998-04-17T18:19:00Z",
  "spacewalks": []
}