API endpoint that allows Astronaut to be viewed.

GET: Return a list of all the existing astronauts.

MODE: Normal, List, LaunchList and Detailed /2.2.0/astronaut/?mode=detailed

FILTERS: Parameters - 'name', 'status', 'nationality', 'agency__name', 'agency__abbrev', 'date_of_birth', 'date_of_death', 'status_ids', 'is_human', 'type__id', 'has_flown', 'in_space' Example - /2.2.0/astronaut/?nationality=American

SEARCH EXAMPLE: /2.2.0/astronaut/?search=armstrong Searches through name, nationality and agency name

ORDERING: Fields - 'name', 'status', 'date_of_birth' Example - /2.2.0/astronaut/?order=name

GET /2.2.0/astronaut/836/?format=api
HTTP 200 OK
Allow: GET
Content-Type: application/json
Vary: Accept

{
    "id": 836,
    "url": "https://lldev.thespacedevs.com/2.2.0/astronaut/836/?format=api",
    "name": "Jannicke Mikkelsen",
    "status": {
        "id": 1,
        "name": "Active"
    },
    "type": {
        "id": 3,
        "name": "Private"
    },
    "in_space": false,
    "time_in_space": "P3DT14H32M38S",
    "eva_time": "P0D",
    "agency": {
        "id": 121,
        "url": "https://lldev.thespacedevs.com/2.2.0/agencies/121/?format=api",
        "name": "SpaceX",
        "type": "Commercial"
    },
    "age": 39,
    "date_of_birth": "1986-06-08",
    "date_of_death": null,
    "nationality": "British Norwegian",
    "twitter": null,
    "instagram": null,
    "bio": "Jannicke Jane Mikkelsen is a Norwegian cinematographer and film director who has worked in the field of virtual reality (VR) cinematography, 3D animation and augmented reality technology, focusing on fringe technology and combining traditional film production with new technologies for films shot in remote areas.",
    "profile_image": "https://thespacedevs-dev.nyc3.digitaloceanspaces.com/media/images/jannicke_mikkel_image_20250329173033.jpg",
    "profile_image_thumbnail": "https://thespacedevs-dev.nyc3.digitaloceanspaces.com/media/images/jannicke_mikkel_image_thumbnail_20250329173034.jpeg",
    "wiki": "https://en.wikipedia.org/wiki/Jannicke_Mikkelsen",
    "flights": [],
    "landings": [],
    "flights_count": 1,
    "landings_count": 1,
    "spacewalks_count": 0,
    "last_flight": "2025-04-01T01:46:50Z",
    "first_flight": "2025-04-01T01:46:50Z",
    "spacewalks": []
}