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

{
  "id": 590,
  "url": "https://lldev.thespacedevs.com/2.2.0/astronaut/590/?format=api",
  "name": "Gary Payton",
  "status": {
    "id": 2,
    "name": "Retired"
  },
  "type": {
    "id": 2,
    "name": "Government"
  },
  "in_space": false,
  "time_in_space": "P3DT1H33M",
  "eva_time": "P0D",
  "agency": {
    "id": 161,
    "url": "https://lldev.thespacedevs.com/2.2.0/agencies/161/?format=api",
    "name": "United States Air Force",
    "type": "Government"
  },
  "age": 77,
  "date_of_birth": "1948-06-20",
  "date_of_death": null,
  "nationality": "American",
  "twitter": null,
  "instagram": null,
  "bio": "Colonel Gary Eugene Payton, USAF, (born June 20, 1948) is an American former astronaut.\r\nPayton flew on the STS-51-C mission aboard the Space Shuttle Discovery in January 1985 which launched and returned to land at the Kennedy Space Center, in Florida. STS-51C was the first dedicated Space Shuttle Department of Defense mission. Payton traveled over 1.2 million miles in 48 Earth orbits, and logged more than 73 hours in space.",
  "profile_image": "https://thespacedevs-dev.nyc3.digitaloceanspaces.com/media/images/gary2520payton_image_20181207223026.jpg",
  "profile_image_thumbnail": "https://thespacedevs-dev.nyc3.digitaloceanspaces.com/media/images/255bauto255d__image_thumbnail_20240305185958.jpeg",
  "wiki": "https://en.wikipedia.org/wiki/Gary_Payton_(astronaut)",
  "flights": [],
  "landings": [],
  "flights_count": 1,
  "landings_count": 1,
  "spacewalks_count": 0,
  "last_flight": "1985-01-24T19:50:00Z",
  "first_flight": "1985-01-24T19:50:00Z",
  "spacewalks": []
}