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

{
    "id": 753,
    "url": "https://lldev.thespacedevs.com/2.0.0/astronaut/753/?format=api",
    "name": "Ali AlQarni",
    "status": {
        "id": 1,
        "name": "Active"
    },
    "type": {
        "id": 2,
        "name": "Government"
    },
    "agency": {
        "id": 1047,
        "url": "https://lldev.thespacedevs.com/2.0.0/agencies/1047/?format=api",
        "name": "Saudi Space Agency",
        "type": "Government"
    },
    "date_of_birth": null,
    "date_of_death": null,
    "nationality": "Saudi",
    "twitter": null,
    "instagram": null,
    "bio": "Ali AlQarni is an astronaut representing the Kingdom of Saudi Arabia and serving as a mission specialist on the Ax-2 mission. AlQarni graduated with a Bachelor of Aerospace Science from King Faisal Air Academy. AlQarni is an Air Force captain and fighter pilot. He has 12 years of experience flying fighter aircrafts and 2,387 flight hours.",
    "profile_image": "https://thespacedevs-prod.nyc3.digitaloceanspaces.com/media/images/ali_alqarni_image_20230213181809.jpg",
    "profile_image_thumbnail": "https://thespacedevs-prod.nyc3.digitaloceanspaces.com/media/images/255bauto255d__image_thumbnail_20240305185906.jpeg",
    "wiki": "https://en.wikipedia.org/wiki/Ali_AlQarni",
    "flights": [],
    "landings": [],
    "last_flight": "2023-05-21T21:37:09Z",
    "first_flight": "2023-05-21T21:37:09Z"
}