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

{
    "id": 667,
    "url": "https://lldev.thespacedevs.com/2.0.0/astronaut/667/?format=api",
    "name": "Yusaku Maezawa",
    "status": {
        "id": 1,
        "name": "Active"
    },
    "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": "1975-11-22",
    "date_of_death": null,
    "nationality": "Japanese",
    "twitter": "https://twitter.com/yousuck2020",
    "instagram": "https://www.instagram.com/yusaku2020",
    "bio": "Yusaku Maezawa is a Japanese billionaire entrepreneur and art collector. He founded Start Today in 1998 and launched the online fashion retail website Zozotown in 2004, now Japan's largest. Most recently, Maezawa introduced a custom-fit apparel brand ZOZO and at-home measurement system, the ZOZOSUIT, in 2018.",
    "profile_image": "https://thespacedevs-prod.nyc3.digitaloceanspaces.com/media/images/yusaku_maezawa_image_20211102152037.jpg",
    "profile_image_thumbnail": "https://thespacedevs-prod.nyc3.digitaloceanspaces.com/media/images/255bauto255d__image_thumbnail_20240305190027.jpeg",
    "wiki": "https://en.wikipedia.org/wiki/Yusaku_Maezawa",
    "flights": [],
    "landings": [],
    "last_flight": "2021-12-08T07:38:15Z",
    "first_flight": "2021-12-08T07:38:15Z"
}