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

{
  "id": 720,
  "url": "https://ll.thespacedevs.com/2.2.0/astronaut/720/?format=api",
  "name": "Pete Davidson",
  "status": {
    "id": 3,
    "name": "In-Training"
  },
  "type": {
    "id": 3,
    "name": "Private"
  },
  "in_space": false,
  "time_in_space": "P0D",
  "eva_time": "P0D",
  "agency": {
    "id": 141,
    "url": "https://ll.thespacedevs.com/2.2.0/agencies/141/?format=api",
    "name": "Blue Origin",
    "type": "Commercial"
  },
  "age": null,
  "date_of_birth": null,
  "date_of_death": null,
  "nationality": "American",
  "twitter": null,
  "instagram": null,
  "bio": "Pete Davidson joined the cast of Saturday Night Live in 2014. In 2020, he co-wrote and starred in the semi-autobiographical film The King of Staten Island, which also earned a nomination for The Comedy Movie Star of 2020 at the 46th People’s Choice Awards. Pete also appeared in the 2021 film The Suicide Squad directed by James Gunn.",
  "profile_image": "https://thespacedevs-prod.nyc3.digitaloceanspaces.com/media/images/pete_davidson_image_20220314132832.jpg",
  "profile_image_thumbnail": "https://thespacedevs-prod.nyc3.digitaloceanspaces.com/media/images/255bauto255d__image_thumbnail_20240305190823.jpeg",
  "wiki": null,
  "flights": [],
  "landings": [],
  "flights_count": 0,
  "landings_count": 0,
  "spacewalks_count": 0,
  "last_flight": null,
  "first_flight": null,
  "spacewalks": []
}