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

{
    "id": 846,
    "url": "https://lldev.thespacedevs.com/2.0.0/astronaut/846/?format=api",
    "name": "Jaime Alemán",
    "status": {
        "id": 14,
        "name": "Occasional Spaceflight"
    },
    "type": {
        "id": 3,
        "name": "Private"
    },
    "agency": {
        "id": 141,
        "url": "https://lldev.thespacedevs.com/2.0.0/agencies/141/?format=api",
        "name": "Blue Origin",
        "type": "Commercial"
    },
    "date_of_birth": "1953-11-14",
    "date_of_death": null,
    "nationality": "Panamanian",
    "twitter": null,
    "instagram": null,
    "bio": "Panamanian lawyer, businessman, and diplomat who served as Ambassador of Panama to the United States from August 11, 2009, to January 2, 2011. Alemán is also recognized for his pursuit of the ultimate travel \"Grand Slam,\" having visited all 193 United Nations member states, both polar extremes, and a suborbital spaceflight with Blue Origin.",
    "profile_image": "https://thespacedevs-prod.nyc3.digitaloceanspaces.com/media/images/jaime_alem25c3_image_20250601063431.jpg",
    "profile_image_thumbnail": "https://thespacedevs-prod.nyc3.digitaloceanspaces.com/media/images/jaime_alem25c3_image_thumbnail_20250601063431.jpeg",
    "wiki": "https://en.wikipedia.org/wiki/Jaime_Alem%C3%A1n",
    "flights": [],
    "landings": [],
    "last_flight": null,
    "first_flight": null
}