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

{
    "id": 718,
    "url": "https://lldev.thespacedevs.com/2.0.0/astronaut/718/?format=api",
    "name": "Anna Menon",
    "status": {
        "id": 3,
        "name": "In-Training"
    },
    "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": "1985-12-24",
    "date_of_death": null,
    "nationality": "American",
    "twitter": "https://x.com/annawmenon",
    "instagram": "https://www.instagram.com/annawmenon/",
    "bio": "NASA astronaut candidate and former Lead Space Operations Engineer at SpaceX, where she has led the implementation of Dragon’s crew capabilities, helped create the crew communicator operator role, and developed critical operational responses to vehicle emergencies such as a fire or cabin depressurization. Anna served in mission control during multiple Dragon missions, such as Demo-2, Crew-1, CRS-22, and CRS-23. In 2024, she flew to space as a mission specialist and medical officer aboard SpaceX’s Polaris Dawn mission.",
    "profile_image": "https://thespacedevs-dev.nyc3.digitaloceanspaces.com/media/images/anna_menon_offi_image_20251205153921.jpeg",
    "profile_image_thumbnail": "https://thespacedevs-dev.nyc3.digitaloceanspaces.com/media/images/anna_menon_offi_image_thumbnail_20251205153921.jpeg",
    "wiki": "https://en.wikipedia.org/wiki/Anna_Menon",
    "flights": [],
    "landings": [],
    "last_flight": "2024-09-10T09:23:49Z",
    "first_flight": "2024-09-10T09:23:49Z"
}