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

{
    "id": 453,
    "url": "https://lldev.thespacedevs.com/2.0.0/astronaut/453/?format=api",
    "name": "Michael López-Alegría",
    "status": {
        "id": 1,
        "name": "Active"
    },
    "type": {
        "id": 3,
        "name": "Private"
    },
    "agency": {
        "id": 1022,
        "url": "https://lldev.thespacedevs.com/2.0.0/agencies/1022/?format=api",
        "name": "Axiom Space",
        "type": "Private"
    },
    "date_of_birth": "1958-05-30",
    "date_of_death": null,
    "nationality": "American",
    "twitter": "https://twitter.com/commandermla",
    "instagram": null,
    "bio": "Michael López-Alegría is a Spanish-American astronaut; a veteran of three Space Shuttle missions and one International Space Station mission. He is known for having performed ten spacewalks so far in his career, presently holding the second longest all-time EVA duration record and having the third longest spaceflight of any American at the length of 215 days; this time was spent on board the ISS from September 18, 2006 to April 21, 2007.",
    "profile_image": "https://thespacedevs-prod.nyc3.digitaloceanspaces.com/media/images/michael_l25c3_image_20201201090124.jpeg",
    "profile_image_thumbnail": "https://thespacedevs-prod.nyc3.digitaloceanspaces.com/media/images/255bauto255d__image_thumbnail_20240305185839.jpeg",
    "wiki": "https://en.wikipedia.org/wiki/Michael_L%C3%B3pez-Alegr%C3%ADa",
    "flights": [],
    "landings": [],
    "last_flight": "2024-01-18T21:49:11Z",
    "first_flight": "1995-10-20T13:53:00Z"
}