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

{
    "id": 772,
    "url": "https://lldev.thespacedevs.com/2.0.0/astronaut/772/?format=api",
    "name": "Timothy Nash",
    "status": {
        "id": 14,
        "name": "Occasional Spaceflight"
    },
    "type": {
        "id": 3,
        "name": "Private"
    },
    "agency": {
        "id": 1024,
        "url": "https://lldev.thespacedevs.com/2.0.0/agencies/1024/?format=api",
        "name": "Virgin Galactic",
        "type": "Private"
    },
    "date_of_birth": null,
    "date_of_death": null,
    "nationality": "British",
    "twitter": null,
    "instagram": null,
    "bio": "Passenger on Virgin Galactic 03 launch",
    "profile_image": null,
    "profile_image_thumbnail": null,
    "wiki": null,
    "flights": [],
    "landings": [],
    "last_flight": "2023-09-08T15:22:00Z",
    "first_flight": "2023-09-08T15:22:00Z"
}