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

{
    "id": 760,
    "url": "https://lldev.thespacedevs.com/2.2.0/astronaut/760/?format=api",
    "name": "Nicola Pecile",
    "status": {
        "id": 1,
        "name": "Active"
    },
    "type": {
        "id": 3,
        "name": "Private"
    },
    "in_space": false,
    "time_in_space": "PT1H5M48S",
    "eva_time": "P0D",
    "agency": {
        "id": 1024,
        "url": "https://lldev.thespacedevs.com/2.2.0/agencies/1024/?format=api",
        "name": "Virgin Galactic",
        "type": "Private"
    },
    "age": 52,
    "date_of_birth": "1973-03-11",
    "date_of_death": null,
    "nationality": "Italian",
    "twitter": "https://twitter.com/nicolapecile",
    "instagram": null,
    "bio": "Former fighter pilot and experimental test pilot for the Italian Air Force, now pilot at Virgin Galactic.",
    "profile_image": "https://thespacedevs-prod.nyc3.digitaloceanspaces.com/media/images/nicola_pecile_image_20230508155154.jpg",
    "profile_image_thumbnail": "https://thespacedevs-prod.nyc3.digitaloceanspaces.com/media/images/255bauto255d__image_thumbnail_20240305191045.jpeg",
    "wiki": null,
    "flights": [],
    "landings": [],
    "flights_count": 5,
    "landings_count": 5,
    "spacewalks_count": 0,
    "last_flight": "2024-06-08T15:26:00Z",
    "first_flight": "2023-04-26T13:47:00Z",
    "spacewalks": []
}