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

{
    "id": 2,
    "url": "https://lldev.thespacedevs.com/2.2.0/astronaut/2/?format=api",
    "name": "Claude Nicollier",
    "status": {
        "id": 2,
        "name": "Retired"
    },
    "type": {
        "id": 2,
        "name": "Government"
    },
    "in_space": false,
    "time_in_space": "P42DT12H3M12S",
    "eva_time": "PT8H10M",
    "agency": {
        "id": 27,
        "url": "https://lldev.thespacedevs.com/2.2.0/agencies/27/?format=api",
        "name": "European Space Agency",
        "type": "Multinational"
    },
    "age": 80,
    "date_of_birth": "1944-09-02",
    "date_of_death": null,
    "nationality": "Swiss",
    "twitter": "https://twitter.com/Astroclaude",
    "instagram": null,
    "bio": "Claude Nicollier is the first astronaut from Switzerland. He has flown on four Space Shuttle missions. His first spaceflight (STS-46) was in 1992, and his final spaceflight (STS-103) was in 1999. He took part in two servicing missions to the Hubble Space Telescope (called STS-61 and STS-103). During his final spaceflight he participated in a spacewalk, becoming the first European Space Agency astronaut to do so during a Space Shuttle mission. In 2000 he was assigned to the Astronaut Office Extravehicular Activity Branch, while maintaining a position as Lead ESA Astronaut in Houston. Nicollier retired from ESA in April 2007.",
    "profile_image": "https://thespacedevs-prod.nyc3.digitaloceanspaces.com/media/images/claude2520nicollier_image_20181127203218.jpg",
    "profile_image_thumbnail": "https://thespacedevs-prod.nyc3.digitaloceanspaces.com/media/images/255bauto255d__image_thumbnail_20240305185551.jpeg",
    "wiki": "https://en.wikipedia.org/wiki/Claude_Nicollier",
    "flights": [],
    "landings": [],
    "flights_count": 4,
    "landings_count": 4,
    "spacewalks_count": 1,
    "last_flight": "1999-12-20T00:50:00Z",
    "first_flight": "1992-07-31T13:56:48Z",
    "spacewalks": []
}