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

{
    "id": 432,
    "url": "https://lldev.thespacedevs.com/2.0.0/astronaut/432/?format=api",
    "name": "Thomas David Jones",
    "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": "1955-01-22",
    "date_of_death": null,
    "nationality": "American",
    "twitter": null,
    "instagram": null,
    "bio": "Thomas David Jones is a former United States astronaut. He was selected to the astronaut corps in 1990 and completed four space shuttle flights before retiring in 2001. He flew on STS-59 and STS-68 in 1994, STS-80 in 1996 and STS-98 in 2001. His total mission time was 53 days 48 minutes. He works as a planetary scientist, space operations consultant, astronaut speaker, and author.",
    "profile_image": "https://thespacedevs-prod.nyc3.digitaloceanspaces.com/media/images/thomas_david_jo_image_20220911034422.jpeg",
    "profile_image_thumbnail": "https://thespacedevs-prod.nyc3.digitaloceanspaces.com/media/images/255bauto255d__image_thumbnail_20240305190956.jpeg",
    "wiki": "https://en.wikipedia.org/wiki/Thomas_David_Jones",
    "flights": [],
    "landings": [],
    "last_flight": "2001-02-07T23:13:02Z",
    "first_flight": "1994-04-09T11:05:01Z"
}