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

{
    "id": 150,
    "url": "https://lldev.thespacedevs.com/2.0.0/astronaut/150/?format=api",
    "name": "Akihiko Hoshide",
    "status": {
        "id": 1,
        "name": "Active"
    },
    "type": {
        "id": 2,
        "name": "Government"
    },
    "agency": {
        "id": 37,
        "url": "https://lldev.thespacedevs.com/2.0.0/agencies/37/?format=api",
        "name": "Japan Aerospace Exploration Agency",
        "type": "Government"
    },
    "date_of_birth": "1968-12-28",
    "date_of_death": null,
    "nationality": "Japanese",
    "twitter": "https://twitter.com/Aki_Hoshide",
    "instagram": null,
    "bio": "Akihiko Hoshide is a Japanese engineer and JAXA astronaut. On August 30, 2012, Hoshide became the third Japanese astronaut to walk in space. His space selfies from 2012, including another space selfie that was posted on Instagram, appeared at the top of many selfie lists of 2013.",
    "profile_image": "https://thespacedevs-prod.nyc3.digitaloceanspaces.com/media/images/akihiko_hoshide_image_20210327081731.jpg",
    "profile_image_thumbnail": "https://thespacedevs-prod.nyc3.digitaloceanspaces.com/media/images/255bauto255d__image_thumbnail_20240305185651.jpeg",
    "wiki": "https://en.wikipedia.org/wiki/Akihiko_Hoshide",
    "flights": [],
    "landings": [],
    "last_flight": "2021-04-23T09:49:02Z",
    "first_flight": "2008-05-31T21:02:12Z"
}