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

{
    "id": 668,
    "url": "https://lldev.thespacedevs.com/2.0.0/astronaut/668/?format=api",
    "name": "Yozo Hirano",
    "status": {
        "id": 14,
        "name": "Occasional Spaceflight"
    },
    "type": {
        "id": 3,
        "name": "Private"
    },
    "agency": {
        "id": 1023,
        "url": "https://lldev.thespacedevs.com/2.0.0/agencies/1023/?format=api",
        "name": "Space Adventures",
        "type": "Private"
    },
    "date_of_birth": "1985-01-01",
    "date_of_death": null,
    "nationality": "Japanese",
    "twitter": null,
    "instagram": null,
    "bio": "Born in Ehime Prefecture, Japan in 1985. Yozo joined ZOZO Co. Ltd shortly after graduating from university, in charge of management and casting director of the photography team.  After leaving ZOZO, he started working as a producer and manager for Yusaku Maezawa’s private projects.\r\n\r\nExact date of birth is unknown.",
    "profile_image": "https://thespacedevs-prod.nyc3.digitaloceanspaces.com/media/images/yozo_hirano_image_20211102151705.jpg",
    "profile_image_thumbnail": "https://thespacedevs-prod.nyc3.digitaloceanspaces.com/media/images/255bauto255d__image_thumbnail_20240305190937.jpeg",
    "wiki": "https://en.wikipedia.org/wiki/Yozo_Hirano",
    "flights": [],
    "landings": [],
    "last_flight": "2021-12-08T07:38:15Z",
    "first_flight": "2021-12-08T07:38:15Z"
}