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

{
  "id": 715,
  "url": "https://lldev.thespacedevs.com/2.0.0/astronaut/715/?format=api",
  "name": "Jessica Wittner",
  "status": {
    "id": 3,
    "name": "In-Training"
  },
  "type": {
    "id": 2,
    "name": "Government"
  },
  "agency": {
    "id": 44,
    "url": "https://lldev.thespacedevs.com/2.0.0/agencies/44/?format=api",
    "name": "National Aeronautics and Space Administration",
    "type": "Government"
  },
  "date_of_birth": "1983-01-01",
  "date_of_death": null,
  "nationality": "American",
  "twitter": null,
  "instagram": null,
  "bio": "Jessica Wittner is a US Navy commander from California with a distinguished career serving on active duty as a naval aviator and test pilot. She holds a Bachelor of Science in aerospace engineering from the University of Arizona, and a Master of Science in aerospace engineering from the U.S. Naval Postgraduate School. Wittner was commissioned as a naval officer through an enlisted-to-officer program and has served operationally flying F/A-18 fighter jets with Strike Fighter Squadron 34 in Virginia Beach, Virginia, and Strike Fighter Squadron 151 in Lemoore, California. A graduate of U.S. Naval Test Pilot School, she also worked as a test pilot and project officer with Air Test and Evaluation Squadron 31 in China Lake, California.\r\n\r\nExact date of birth unknown.",
  "profile_image": "https://thespacedevs-dev.nyc3.digitaloceanspaces.com/media/images/jessica_wittner_image_20211206185425.jpg",
  "profile_image_thumbnail": "https://thespacedevs-dev.nyc3.digitaloceanspaces.com/media/images/255bauto255d__image_thumbnail_20240305190332.jpeg",
  "wiki": "https://en.wikipedia.org/wiki/Jessica_Wittner",
  "flights": [],
  "landings": [],
  "last_flight": null,
  "first_flight": null
}