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

{
    "id": 474,
    "url": "https://lldev.thespacedevs.com/2.0.0/astronaut/474/?format=api",
    "name": "Frederick W. Sturckow",
    "status": {
        "id": 1,
        "name": "Active"
    },
    "type": {
        "id": 3,
        "name": "Private"
    },
    "agency": {
        "id": 1024,
        "url": "https://lldev.thespacedevs.com/2.0.0/agencies/1024/?format=api",
        "name": "Virgin Galactic",
        "type": "Private"
    },
    "date_of_birth": "1961-08-11",
    "date_of_death": null,
    "nationality": "American",
    "twitter": null,
    "instagram": null,
    "bio": "Frederick Wilford \"Rick\" Sturckow is an Engineer, retired United States Marine Corps officer, former NASA astronaut, and commercial spacecraft pilot. Sturckow is a veteran of four Space Shuttle missions. He flew on STS-88 and STS-105 as a pilot and STS-117 and STS-128 as a commander. All four missions docked with the International Space Station, making Sturckow one of two people to visit the station four times. Sturckow later was assigned to the Johnson Space Center as a CAPCOM. He left NASA in 2013 to become a pilot for Virgin Galactic.",
    "profile_image": "https://thespacedevs-prod.nyc3.digitaloceanspaces.com/media/images/frederick_w._st_image_20210522153643.jpeg",
    "profile_image_thumbnail": "https://thespacedevs-prod.nyc3.digitaloceanspaces.com/media/images/255bauto255d__image_thumbnail_20240305190532.jpeg",
    "wiki": "https://en.wikipedia.org/wiki/Frederick_W._Sturckow",
    "flights": [],
    "landings": [],
    "last_flight": "2024-01-26T17:42:05Z",
    "first_flight": "1998-12-04T08:35:34Z"
}