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

{
    "id": 191,
    "url": "https://lldev.thespacedevs.com/2.0.0/astronaut/191/?format=api",
    "name": "Franco Malerba",
    "status": {
        "id": 2,
        "name": "Retired"
    },
    "type": {
        "id": 2,
        "name": "Government"
    },
    "agency": {
        "id": 36,
        "url": "https://lldev.thespacedevs.com/2.0.0/agencies/36/?format=api",
        "name": "Italian Space Agency",
        "type": "Government"
    },
    "date_of_birth": "1946-10-10",
    "date_of_death": null,
    "nationality": "Italian",
    "twitter": null,
    "instagram": null,
    "bio": "Franco Egidio Malerba (born 10 October 1946 in Busalla, Metropolitan City of Genoa, Italy) is an astronaut. He was the first citizen of Italy to travel to space.\r\nAfter selection in 1989 as a Payload Specialist by the Italian Space Agency (ASI) and NASA, he became a staff member of ASI and was assigned to the NASA Johnson Space Center, Houston, Texas, for training. In September 1991, he was designated Prime Payload Specialist for the TSS-1 Space Shuttle mission. Malerba flew as the first Italian citizen in space on STS-46 (31 July 1992 to 7 August 1992).",
    "profile_image": "https://thespacedevs-prod.nyc3.digitaloceanspaces.com/media/images/franco2520malerba_image_20181201174554.jpg",
    "profile_image_thumbnail": "https://thespacedevs-prod.nyc3.digitaloceanspaces.com/media/images/255bauto255d__image_thumbnail_20240305190505.jpeg",
    "wiki": "https://en.wikipedia.org/wiki/Franco_Malerba",
    "flights": [],
    "landings": [],
    "last_flight": "1992-07-31T13:56:48Z",
    "first_flight": "1992-07-31T13:56:48Z"
}