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

{
    "id": 103,
    "url": "https://lldev.thespacedevs.com/2.0.0/astronaut/103/?format=api",
    "name": "Fei Junlong",
    "status": {
        "id": 1,
        "name": "Active"
    },
    "type": {
        "id": 2,
        "name": "Government"
    },
    "agency": {
        "id": 17,
        "url": "https://lldev.thespacedevs.com/2.0.0/agencies/17/?format=api",
        "name": "China National Space Administration",
        "type": "Government"
    },
    "date_of_birth": "1965-05-05",
    "date_of_death": null,
    "nationality": "Chinese",
    "twitter": null,
    "instagram": null,
    "bio": "Major general Fei Junlong (simplified Chinese: 费俊龙; traditional Chinese: 費俊龍; pinyin: Fèi Jùnlóng; born 1965) is a Chinese military pilot and an astronaut. He flew on the second manned spaceflight of the Shenzhou program.\r\n\r\nFèi was selected for the CNSA astronaut program in 1998. He was in the final five selected for the Shenzhou 5 flight. He was the commander on the Shenzhou 6 flight that launched October 12, 2005, with Niè Hǎishèng serving as flight engineer). They landed on October 17, 2005.",
    "profile_image": "https://thespacedevs-prod.nyc3.digitaloceanspaces.com/media/images/fei_junlong_image_20221128080229.jpg",
    "profile_image_thumbnail": "https://thespacedevs-prod.nyc3.digitaloceanspaces.com/media/images/255bauto255d__image_thumbnail_20240305190713.jpeg",
    "wiki": "https://en.wikipedia.org/wiki/Fei_Junlong",
    "flights": [],
    "landings": [],
    "last_flight": "2022-11-29T15:08:17Z",
    "first_flight": "2005-10-12T01:00:03Z"
}