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

{
  "id": 801,
  "url": "https://lldev.thespacedevs.com/2.2.0/astronaut/801/?format=api",
  "name": "Irving Pergament",
  "status": {
    "id": 14,
    "name": "Occasional Spaceflight"
  },
  "type": {
    "id": 3,
    "name": "Private"
  },
  "in_space": false,
  "time_in_space": "PT15M",
  "eva_time": "P0D",
  "agency": {
    "id": 1024,
    "url": "https://lldev.thespacedevs.com/2.2.0/agencies/1024/?format=api",
    "name": "Virgin Galactic",
    "type": "Private"
  },
  "age": null,
  "date_of_birth": null,
  "date_of_death": null,
  "nationality": "American",
  "twitter": null,
  "instagram": null,
  "bio": "Passenger on Virgin Galactic's seventh commercial spaceflight.",
  "profile_image": "https://thespacedevs-dev.nyc3.digitaloceanspaces.com/media/images/irving_pergamen_image_20240609071826.png",
  "profile_image_thumbnail": "https://thespacedevs-dev.nyc3.digitaloceanspaces.com/media/images/irving_pergamen_image_thumbnail_20240609071827.png",
  "wiki": null,
  "flights": [],
  "landings": [],
  "flights_count": 1,
  "landings_count": 1,
  "spacewalks_count": 0,
  "last_flight": "2024-06-08T15:26:00Z",
  "first_flight": "2024-06-08T15:26:00Z",
  "spacewalks": []
}