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

{
    "id": 800,
    "url": "https://lldev.thespacedevs.com/2.2.0/astronaut/800/?format=api",
    "name": "Andy Sadhwani",
    "status": {
        "id": 14,
        "name": "Occasional Spaceflight"
    },
    "type": {
        "id": 3,
        "name": "Private"
    },
    "in_space": false,
    "time_in_space": "PT15M",
    "eva_time": "P0D",
    "agency": {
        "id": 1024,
        "url": "https://lldev.thespacedevs.com/2.2.0/agencies/1024/?format=api",
        "name": "Virgin Galactic",
        "type": "Private"
    },
    "age": null,
    "date_of_birth": null,
    "date_of_death": null,
    "nationality": "American",
    "twitter": null,
    "instagram": null,
    "bio": "SpaceX engineer and passenger on Virgin Galactic's seventh commercial spaceflight.",
    "profile_image": "https://thespacedevs-prod.nyc3.digitaloceanspaces.com/media/images/andy_sadhwani_p_image_20240609071856.png",
    "profile_image_thumbnail": "https://thespacedevs-prod.nyc3.digitaloceanspaces.com/media/images/andy_sadhwani_p_image_thumbnail_20240609071857.png",
    "wiki": null,
    "flights": [],
    "landings": [],
    "flights_count": 1,
    "landings_count": 1,
    "spacewalks_count": 0,
    "last_flight": "2024-06-08T15:26:00Z",
    "first_flight": "2024-06-08T15:26:00Z",
    "spacewalks": []
}