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

{
    "id": 503,
    "url": "https://lldev.thespacedevs.com/2.0.0/astronaut/503/?format=api",
    "name": "Mike Massimino",
    "status": {
        "id": 2,
        "name": "Retired"
    },
    "type": {
        "id": 2,
        "name": "Government"
    },
    "agency": {
        "id": 44,
        "url": "https://lldev.thespacedevs.com/2.0.0/agencies/44/?format=api",
        "name": "National Aeronautics and Space Administration",
        "type": "Government"
    },
    "date_of_birth": "1962-08-19",
    "date_of_death": null,
    "nationality": "American",
    "twitter": "https://twitter.com/Astro_Mike",
    "instagram": "https://www.instagram.com/astromikemassimino/",
    "bio": "Michael James Massimino is an American professor of mechanical engineering at Columbia University and a former NASA astronaut. He is the senior advisor of space programs at the Intrepid Sea, Air & Space Museum.\r\n\r\nEarly life Massimino was born August 19, 1962 in Oceanside, New York, and raised in Franklin Square, New York, both on Long Island. He graduated from H. Frank Carey Junior-Senior High School in Franklin Square, New York in 1980. He went on to attend Columbia University, graduating with a Bachelor of Science degree in Industrial Engineering in 1984. He then attended the Massachusetts Institute of Technology, graduating with a Master of Science degree in Mechanical Engineering and a Master of Science degree in Technology and Public Policy in 1988. He continued his education at MIT, earning a Degree of Mechanical Engineer in 1990 and a Doctor of Philosophy degree in Mechanical Engineering in 1992.",
    "profile_image": "https://thespacedevs-prod.nyc3.digitaloceanspaces.com/media/images/mike_massimino_image_20220911033638.jpeg",
    "profile_image_thumbnail": "https://thespacedevs-prod.nyc3.digitaloceanspaces.com/media/images/255bauto255d__image_thumbnail_20240305185226.jpeg",
    "wiki": "https://en.wikipedia.org/wiki/Mike_Massimino",
    "flights": [],
    "landings": [],
    "last_flight": "2009-05-11T18:01:56Z",
    "first_flight": "2002-03-01T11:22:02Z"
}