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

{
  "id": 717,
  "url": "https://lldev.thespacedevs.com/2.0.0/astronaut/717/?format=api",
  "name": "Sarah Gillis",
  "status": {
    "id": 14,
    "name": "Occasional Spaceflight"
  },
  "type": {
    "id": 3,
    "name": "Private"
  },
  "agency": {
    "id": 121,
    "url": "https://lldev.thespacedevs.com/2.0.0/agencies/121/?format=api",
    "name": "SpaceX",
    "type": "Commercial"
  },
  "date_of_birth": "1990-01-01",
  "date_of_death": null,
  "nationality": "American",
  "twitter": "https://twitter.com/Gillis_SarahE",
  "instagram": null,
  "bio": "Sarah Gillis is a Lead Space Operations Engineer at SpaceX, responsible for overseeing the company’s astronaut training program. This includes the development of mission-specific curriculum and training execution for both NASA and commercial astronauts who fly aboard the Dragon spacecraft. She prepared NASA astronauts for the Demo-2 and Crew-1 missions as well as directly trained the Inspiration4 astronauts. She is an experienced mission control operator, who has supported real-time operations for Dragon’s cargo resupply missions to and from the International Space Station as a Navigation Officer, and as a crew communicator for Dragon’s human spaceflight missions.",
  "profile_image": "https://thespacedevs-dev.nyc3.digitaloceanspaces.com/media/images/sarah_gillis_image_20220214140409.jpeg",
  "profile_image_thumbnail": "https://thespacedevs-dev.nyc3.digitaloceanspaces.com/media/images/255bauto255d__image_thumbnail_20240305185621.jpeg",
  "wiki": null,
  "flights": [],
  "landings": [],
  "last_flight": "2024-09-10T09:23:49Z",
  "first_flight": "2024-09-10T09:23:49Z"
}