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

{
  "id": 774,
  "url": "https://lldev.thespacedevs.com/2.0.0/astronaut/774/?format=api",
  "name": "Marcus Wandt",
  "status": {
    "id": 1,
    "name": "Active"
  },
  "type": {
    "id": 2,
    "name": "Government"
  },
  "agency": {
    "id": 27,
    "url": "https://lldev.thespacedevs.com/2.0.0/agencies/27/?format=api",
    "name": "European Space Agency",
    "type": "Multinational"
  },
  "date_of_birth": "1980-09-22",
  "date_of_death": null,
  "nationality": "Swedish",
  "twitter": "https://twitter.com/astro_marcus",
  "instagram": "https://www.instagram.com/esaastro_marcus/",
  "bio": "Marcus Wandt is a Swedish test pilot and member of the European Space Agency's 2022 astronaut class reserve.",
  "profile_image": "https://thespacedevs-dev.nyc3.digitaloceanspaces.com/media/images/marcus_wandt_image_20230912131352.jpg",
  "profile_image_thumbnail": "https://thespacedevs-dev.nyc3.digitaloceanspaces.com/media/images/255bauto255d__image_thumbnail_20240305185253.jpeg",
  "wiki": "https://en.wikipedia.org/wiki/Marcus_Wandt",
  "flights": [],
  "landings": [],
  "last_flight": "2024-01-18T21:49:11Z",
  "first_flight": "2024-01-18T21:49:11Z"
}