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

{
  "id": 603,
  "url": "https://lldev.thespacedevs.com/2.2.0/astronaut/603/?format=api",
  "name": "F. Drew Gaffney",
  "status": {
    "id": 2,
    "name": "Retired"
  },
  "type": {
    "id": 5,
    "name": "Payload Specialist"
  },
  "in_space": false,
  "time_in_space": "P9DT2H14M9S",
  "eva_time": "P0D",
  "agency": {
    "id": 44,
    "url": "https://lldev.thespacedevs.com/2.2.0/agencies/44/?format=api",
    "name": "National Aeronautics and Space Administration",
    "type": "Government"
  },
  "age": 79,
  "date_of_birth": "1946-06-09",
  "date_of_death": null,
  "nationality": "American",
  "twitter": null,
  "instagram": null,
  "bio": "Francis Andrew \"Drew\" Gaffney is an American doctor. He previously worked for NASA and participated in the STS-40 Space Life Sciences (SLS 1) Space Shuttle mission in 1991 as a payload specialist. The SLS-1 mission crew completed over 18 experiments in nine days, bringing back more medical data than any previous NASA flight. He is currently a professor of medicine at Vanderbilt University.",
  "profile_image": "https://thespacedevs-dev.nyc3.digitaloceanspaces.com/media/images/f.2520drew2520gaffney_image_20190211162526.jpeg",
  "profile_image_thumbnail": "https://thespacedevs-dev.nyc3.digitaloceanspaces.com/media/images/255bauto255d__image_thumbnail_20240305191105.jpeg",
  "wiki": "https://en.wikipedia.org/wiki/F._Drew_Gaffney",
  "flights": [],
  "landings": [],
  "flights_count": 1,
  "landings_count": 1,
  "spacewalks_count": 0,
  "last_flight": "1991-06-05T13:24:51Z",
  "first_flight": "1991-06-05T13:24:51Z",
  "spacewalks": []
}