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

{
    "id": 213,
    "url": "https://lldev.thespacedevs.com/2.2.0/astronaut/213/?format=api",
    "name": "Wubbo Ockels",
    "status": {
        "id": 11,
        "name": "Deceased"
    },
    "type": {
        "id": 2,
        "name": "Government"
    },
    "in_space": false,
    "time_in_space": "P7DT44M",
    "eva_time": "P0D",
    "agency": {
        "id": 27,
        "url": "https://lldev.thespacedevs.com/2.2.0/agencies/27/?format=api",
        "name": "European Space Agency",
        "type": "Multinational"
    },
    "age": 68,
    "date_of_birth": "1946-03-28",
    "date_of_death": "2014-05-18",
    "nationality": "Dutch",
    "twitter": null,
    "instagram": null,
    "bio": "Dr Wubbo Johannes Ockels (28 March 1946 – 18 May 2014) was a Dutch physicist and an astronaut of the European Space Agency (ESA). In 1985 he participated in a flight on the Space Shuttle Challenger, STS-61-A, making him the first Dutch citizen in space.",
    "profile_image": "https://thespacedevs-prod.nyc3.digitaloceanspaces.com/media/images/wubbo2520ockels_image_20181201184140.jpg",
    "profile_image_thumbnail": "https://thespacedevs-prod.nyc3.digitaloceanspaces.com/media/images/255bauto255d__image_thumbnail_20240305191144.jpeg",
    "wiki": "https://en.wikipedia.org/wiki/Wubbo_Ockels",
    "flights": [],
    "landings": [],
    "flights_count": 1,
    "landings_count": 1,
    "spacewalks_count": 0,
    "last_flight": "1985-10-30T17:00:00Z",
    "first_flight": "1985-10-30T17:00:00Z",
    "spacewalks": []
}