API endpoint that allows Expeditions to be viewed.

GET:
Return a list of all the existing expeditions.

MODE:
Normal and Detailed
/2.2.0/expedition/?mode=detailed

FILTERS:
Fields - 'name', 'crew__astronaut', 'crew__astronaut__agency', 'space_station'

Get all Expeditions with the Space Station ID of 1.
Example - /2.2.0/expedition/?space_station=1&mode=detailed

Search for all Expeditions with the Astronaut named John
Example - /2.2.0/expedition/?search=John

ORDERING:
Fields - 'id', 'start', 'end'
Order reverse via Start date.
Example - /2.2.0/astronaut/?order=-start

GET /2.2.0/expedition/142/?format=api
HTTP 200 OK
Allow: GET
Content-Type: application/json
Vary: Accept

{
    "id": 142,
    "url": "https://ll.thespacedevs.com/2.2.0/expedition/142/?format=api",
    "name": "Expedition 66",
    "start": "2021-10-17T01:14:00Z",
    "end": "2022-03-30T07:21:00Z",
    "spacestation": {
        "id": 4,
        "url": "https://ll.thespacedevs.com/2.2.0/spacestation/4/?format=api",
        "name": "International Space Station",
        "status": {
            "id": 1,
            "name": "Active"
        },
        "founded": "1998-11-20",
        "description": "The International Space Station (ISS) is a space station, or a habitable artificial satellite, in low Earth orbit. Its first component was launched into orbit in 1998, with the first long-term residents arriving in November 2000. It has been inhabited continuously since that date. The last pressurised module was fitted in 2011, and an experimental inflatable space habitat was added in 2016. The station is expected to operate until 2030. Development and assembly of the station continues, with several new elements scheduled for launch in 2019. The ISS is the largest human-made body in low Earth orbit and can often be seen with the naked eye from Earth. The ISS consists of pressurised habitation modules, structural trusses, solar arrays, radiators, docking ports, experiment bays and robotic arms. ISS components have been launched by Russian Proton and Soyuz rockets, and American Space Shuttles.",
        "orbit": "Low Earth Orbit",
        "image_url": "https://spacelaunchnow-prod-east.nyc3.digitaloceanspaces.com/media/images/international2520space2520station_image_20190220215716.jpeg",
        "owners": [
            {
                "id": 16,
                "url": "https://ll.thespacedevs.com/2.2.0/agencies/16/?format=api",
                "name": "Canadian Space Agency",
                "abbrev": "CSA"
            },
            {
                "id": 27,
                "url": "https://ll.thespacedevs.com/2.2.0/agencies/27/?format=api",
                "name": "European Space Agency",
                "abbrev": "ESA"
            },
            {
                "id": 37,
                "url": "https://ll.thespacedevs.com/2.2.0/agencies/37/?format=api",
                "name": "Japan Aerospace Exploration Agency",
                "abbrev": "JAXA"
            },
            {
                "id": 44,
                "url": "https://ll.thespacedevs.com/2.2.0/agencies/44/?format=api",
                "name": "National Aeronautics and Space Administration",
                "abbrev": "NASA"
            },
            {
                "id": 63,
                "url": "https://ll.thespacedevs.com/2.2.0/agencies/63/?format=api",
                "name": "Russian Federal Space Agency (ROSCOSMOS)",
                "abbrev": "RFSA"
            }
        ]
    },
    "crew": [
        {
            "id": 3638,
            "role": {
                "id": 1,
                "role": "Commander",
                "priority": 0
            },
            "astronaut": {
                "id": 557,
                "url": "https://ll.thespacedevs.com/2.2.0/astronaut/557/?format=api",
                "name": "Thomas Marshburn",
                "status": {
                    "id": 1,
                    "name": "Active"
                },
                "agency": {
                    "id": 44,
                    "url": "https://ll.thespacedevs.com/2.2.0/agencies/44/?format=api",
                    "name": "National Aeronautics and Space Administration",
                    "type": "Government"
                },
                "profile_image": "https://spacelaunchnow-prod-east.nyc3.digitaloceanspaces.com/media/images/thomas_marshbur_image_20211001184611.jpg",
                "profile_image_thumbnail": "https://spacelaunchnow-prod-east.nyc3.digitaloceanspaces.com/media/images/255bauto255d__image_thumbnail_20240305190651.jpeg"
            }
        },
        {
            "id": 3630,
            "role": {
                "id": 3,
                "role": "Flight Engineer",
                "priority": 2
            },
            "astronaut": {
                "id": 663,
                "url": "https://ll.thespacedevs.com/2.2.0/astronaut/663/?format=api",
                "name": "Denis Matveev",
                "status": {
                    "id": 1,
                    "name": "Active"
                },
                "agency": {
                    "id": 63,
                    "url": "https://ll.thespacedevs.com/2.2.0/agencies/63/?format=api",
                    "name": "Russian Federal Space Agency (ROSCOSMOS)",
                    "type": "Government"
                },
                "profile_image": "https://spacelaunchnow-prod-east.nyc3.digitaloceanspaces.com/media/images/denis_matveev_image_20220316173450.jpg",
                "profile_image_thumbnail": "https://spacelaunchnow-prod-east.nyc3.digitaloceanspaces.com/media/images/255bauto255d__image_thumbnail_20240305190418.jpeg"
            }
        },
        {
            "id": 3587,
            "role": {
                "id": 3,
                "role": "Flight Engineer",
                "priority": 2
            },
            "astronaut": {
                "id": 574,
                "url": "https://ll.thespacedevs.com/2.2.0/astronaut/574/?format=api",
                "name": "Kayla Barron",
                "status": {
                    "id": 1,
                    "name": "Active"
                },
                "agency": {
                    "id": 44,
                    "url": "https://ll.thespacedevs.com/2.2.0/agencies/44/?format=api",
                    "name": "National Aeronautics and Space Administration",
                    "type": "Government"
                },
                "profile_image": "https://spacelaunchnow-prod-east.nyc3.digitaloceanspaces.com/media/images/kayla_barron_image_20211001184846.jpg",
                "profile_image_thumbnail": "https://spacelaunchnow-prod-east.nyc3.digitaloceanspaces.com/media/images/255bauto255d__image_thumbnail_20240305190609.jpeg"
            }
        },
        {
            "id": 3588,
            "role": {
                "id": 3,
                "role": "Flight Engineer",
                "priority": 2
            },
            "astronaut": {
                "id": 653,
                "url": "https://ll.thespacedevs.com/2.2.0/astronaut/653/?format=api",
                "name": "Matthias Maurer",
                "status": {
                    "id": 1,
                    "name": "Active"
                },
                "agency": {
                    "id": 27,
                    "url": "https://ll.thespacedevs.com/2.2.0/agencies/27/?format=api",
                    "name": "European Space Agency",
                    "type": "Multinational"
                },
                "profile_image": "https://spacelaunchnow-prod-east.nyc3.digitaloceanspaces.com/media/images/matthias_maurer_image_20211001184714.jpg",
                "profile_image_thumbnail": "https://spacelaunchnow-prod-east.nyc3.digitaloceanspaces.com/media/images/255bauto255d__image_thumbnail_20240305190207.jpeg"
            }
        },
        {
            "id": 3261,
            "role": {
                "id": 3,
                "role": "Flight Engineer",
                "priority": 2
            },
            "astronaut": {
                "id": 650,
                "url": "https://ll.thespacedevs.com/2.2.0/astronaut/650/?format=api",
                "name": "Pyotr Dubrov",
                "status": {
                    "id": 1,
                    "name": "Active"
                },
                "agency": {
                    "id": 63,
                    "url": "https://ll.thespacedevs.com/2.2.0/agencies/63/?format=api",
                    "name": "Russian Federal Space Agency (ROSCOSMOS)",
                    "type": "Government"
                },
                "profile_image": "https://spacelaunchnow-prod-east.nyc3.digitaloceanspaces.com/media/images/pyotr_dubrov_image_20201120155626.jpg",
                "profile_image_thumbnail": "https://spacelaunchnow-prod-east.nyc3.digitaloceanspaces.com/media/images/255bauto255d__image_thumbnail_20240305185922.jpeg"
            }
        },
        {
            "id": 3585,
            "role": {
                "id": 3,
                "role": "Flight Engineer",
                "priority": 2
            },
            "astronaut": {
                "id": 576,
                "url": "https://ll.thespacedevs.com/2.2.0/astronaut/576/?format=api",
                "name": "Raja Chari",
                "status": {
                    "id": 1,
                    "name": "Active"
                },
                "agency": {
                    "id": 44,
                    "url": "https://ll.thespacedevs.com/2.2.0/agencies/44/?format=api",
                    "name": "National Aeronautics and Space Administration",
                    "type": "Government"
                },
                "profile_image": "https://spacelaunchnow-prod-east.nyc3.digitaloceanspaces.com/media/images/raja_chari_image_20211001184813.jpg",
                "profile_image_thumbnail": "https://spacelaunchnow-prod-east.nyc3.digitaloceanspaces.com/media/images/255bauto255d__image_thumbnail_20240305190402.jpeg"
            }
        },
        {
            "id": 3631,
            "role": {
                "id": 3,
                "role": "Flight Engineer",
                "priority": 2
            },
            "astronaut": {
                "id": 651,
                "url": "https://ll.thespacedevs.com/2.2.0/astronaut/651/?format=api",
                "name": "Sergey Korsakov",
                "status": {
                    "id": 1,
                    "name": "Active"
                },
                "agency": {
                    "id": 63,
                    "url": "https://ll.thespacedevs.com/2.2.0/agencies/63/?format=api",
                    "name": "Russian Federal Space Agency (ROSCOSMOS)",
                    "type": "Government"
                },
                "profile_image": "https://spacelaunchnow-prod-east.nyc3.digitaloceanspaces.com/media/images/sergey_korsakov_image_20220316173447.jpg",
                "profile_image_thumbnail": "https://spacelaunchnow-prod-east.nyc3.digitaloceanspaces.com/media/images/255bauto255d__image_thumbnail_20240305190544.jpeg"
            }
        },
        {
            "id": 3262,
            "role": {
                "id": 3,
                "role": "Flight Engineer",
                "priority": 2
            },
            "astronaut": {
                "id": 567,
                "url": "https://ll.thespacedevs.com/2.2.0/astronaut/567/?format=api",
                "name": "Mark T. Vande Hei",
                "status": {
                    "id": 1,
                    "name": "Active"
                },
                "agency": {
                    "id": 44,
                    "url": "https://ll.thespacedevs.com/2.2.0/agencies/44/?format=api",
                    "name": "National Aeronautics and Space Administration",
                    "type": "Government"
                },
                "profile_image": "https://spacelaunchnow-prod-east.nyc3.digitaloceanspaces.com/media/images/mark2520t.2520vande2520hei_image_20181203172617.jpg",
                "profile_image_thumbnail": "https://spacelaunchnow-prod-east.nyc3.digitaloceanspaces.com/media/images/255bauto255d__image_thumbnail_20240305190800.jpeg"
            }
        },
        {
            "id": 3629,
            "role": {
                "id": 3,
                "role": "Flight Engineer",
                "priority": 2
            },
            "astronaut": {
                "id": 17,
                "url": "https://ll.thespacedevs.com/2.2.0/astronaut/17/?format=api",
                "name": "Oleg Artemyev",
                "status": {
                    "id": 1,
                    "name": "Active"
                },
                "agency": {
                    "id": 63,
                    "url": "https://ll.thespacedevs.com/2.2.0/agencies/63/?format=api",
                    "name": "Russian Federal Space Agency (ROSCOSMOS)",
                    "type": "Government"
                },
                "profile_image": "https://spacelaunchnow-prod-east.nyc3.digitaloceanspaces.com/media/images/oleg_artemyev_image_20220316173454.jpg",
                "profile_image_thumbnail": "https://spacelaunchnow-prod-east.nyc3.digitaloceanspaces.com/media/images/255bauto255d__image_thumbnail_20240305191149.jpeg"
            }
        },
        {
            "id": 3637,
            "role": {
                "id": 3,
                "role": "Flight Engineer",
                "priority": 2
            },
            "astronaut": {
                "id": 252,
                "url": "https://ll.thespacedevs.com/2.2.0/astronaut/252/?format=api",
                "name": "Anton Shkaplerov",
                "status": {
                    "id": 1,
                    "name": "Active"
                },
                "agency": {
                    "id": 63,
                    "url": "https://ll.thespacedevs.com/2.2.0/agencies/63/?format=api",
                    "name": "Russian Federal Space Agency (ROSCOSMOS)",
                    "type": "Government"
                },
                "profile_image": "https://spacelaunchnow-prod-east.nyc3.digitaloceanspaces.com/media/images/anton_shkaplero_image_20211001184311.jpg",
                "profile_image_thumbnail": "https://spacelaunchnow-prod-east.nyc3.digitaloceanspaces.com/media/images/255bauto255d__image_thumbnail_20240305190702.jpeg"
            }
        }
    ],
    "mission_patches": [
        {
            "id": 729,
            "name": "Expedition 66 Patch",
            "priority": 9,
            "image_url": "https://spacelaunchnow-prod-east.nyc3.digitaloceanspaces.com/media/mission_patch_images/expedition_66_patch_20221024013525.png",
            "agency": {
                "id": 44,
                "url": "https://ll.thespacedevs.com/2.2.0/agencies/44/?format=api",
                "name": "National Aeronautics and Space Administration",
                "type": "Government"
            }
        },
        {
            "id": 95,
            "name": "Expedition 66 Mission Patch",
            "priority": 10,
            "image_url": "https://spacelaunchnow-prod-east.nyc3.digitaloceanspaces.com/media/mission_patch_images/expedition2520_mission_patch_20211017070255.png",
            "agency": {
                "id": 44,
                "url": "https://ll.thespacedevs.com/2.2.0/agencies/44/?format=api",
                "name": "National Aeronautics and Space Administration",
                "type": "Government"
            }
        }
    ],
    "spacewalks": [
        {
            "id": 435,
            "url": "https://ll.thespacedevs.com/2.2.0/spacewalks/435/?format=api",
            "name": "Expedition 66 EVA 4",
            "start": "2022-03-23T12:32:00Z",
            "end": "2022-03-23T19:26:00Z",
            "duration": "PT6H54M",
            "location": "International Space Station",
            "crew": [
                {
                    "id": 4638,
                    "role": {
                        "id": 33,
                        "role": "EV1",
                        "priority": 0
                    },
                    "astronaut": {
                        "id": 576,
                        "url": "https://ll.thespacedevs.com/2.2.0/astronaut/576/?format=api",
                        "name": "Raja Chari",
                        "type": {
                            "id": 2,
                            "name": "Government"
                        },
                        "in_space": false,
                        "time_in_space": "P176DT2H39M29S",
                        "status": {
                            "id": 1,
                            "name": "Active"
                        },
                        "agency": {
                            "id": 44,
                            "url": "https://ll.thespacedevs.com/2.2.0/agencies/44/?format=api",
                            "name": "National Aeronautics and Space Administration",
                            "type": "Government"
                        },
                        "date_of_birth": "1977-06-24",
                        "date_of_death": null,
                        "nationality": "American",
                        "twitter": "https://twitter.com/Astro_Raja",
                        "instagram": "https://www.instagram.com/astro_raja/",
                        "bio": "Raja Jon Vurputoor Chari is an American test pilot and NASA astronaut of the class of 2017. He is a graduate of the U.S. Air Force Academy, MIT, and U.S. Naval Test Pilot School, and has over 2,000 flying hours.",
                        "profile_image": "https://spacelaunchnow-prod-east.nyc3.digitaloceanspaces.com/media/images/raja_chari_image_20211001184813.jpg",
                        "wiki": "https://en.wikipedia.org/wiki/Raja_Chari",
                        "last_flight": "2021-11-11T02:03:31Z",
                        "first_flight": "2021-11-11T02:03:31Z"
                    }
                },
                {
                    "id": 4639,
                    "role": {
                        "id": 34,
                        "role": "EV2",
                        "priority": 1
                    },
                    "astronaut": {
                        "id": 653,
                        "url": "https://ll.thespacedevs.com/2.2.0/astronaut/653/?format=api",
                        "name": "Matthias Maurer",
                        "type": {
                            "id": 2,
                            "name": "Government"
                        },
                        "in_space": false,
                        "time_in_space": "P176DT2H39M29S",
                        "status": {
                            "id": 1,
                            "name": "Active"
                        },
                        "agency": {
                            "id": 27,
                            "url": "https://ll.thespacedevs.com/2.2.0/agencies/27/?format=api",
                            "name": "European Space Agency",
                            "type": "Multinational"
                        },
                        "date_of_birth": "1970-03-18",
                        "date_of_death": null,
                        "nationality": "German",
                        "twitter": "https://twitter.com/astro_matthias",
                        "instagram": "https://www.instagram.com/esamatthiasmaurer",
                        "bio": "Maurer applied to the European Space Agency as an astronaut in 2008, but was not initially appointed to the European Astronaut Corps. He formally joined the European Astronaut Corps in July 2015. In March 2018, he gained certification to perform International Space Station-related spacewalks in the American spacesuit EMU. In 2018 he also successfully graduated from both basic astronaut training and pre-assignment training and thus became fully certified to go to space.\r\nOn 28 July 2020, Maurer was announced as a backup for Thomas Pesquet for the ISS expedition 65. His own flight is scheduled to take place no earlier than September 2021 aboard SpaceX Crew-3.",
                        "profile_image": "https://spacelaunchnow-prod-east.nyc3.digitaloceanspaces.com/media/images/matthias_maurer_image_20211001184714.jpg",
                        "wiki": "https://en.wikipedia.org/wiki/Matthias_Maurer",
                        "last_flight": "2021-11-11T02:03:31Z",
                        "first_flight": "2021-11-11T02:03:31Z"
                    }
                }
            ]
        },
        {
            "id": 434,
            "url": "https://ll.thespacedevs.com/2.2.0/spacewalks/434/?format=api",
            "name": "Expedition 66 EVA 3",
            "start": "2022-03-15T12:11:00Z",
            "end": "2022-03-15T19:06:00Z",
            "duration": "PT6H55M",
            "location": "International Space Station",
            "crew": [
                {
                    "id": 4636,
                    "role": {
                        "id": 33,
                        "role": "EV1",
                        "priority": 0
                    },
                    "astronaut": {
                        "id": 576,
                        "url": "https://ll.thespacedevs.com/2.2.0/astronaut/576/?format=api",
                        "name": "Raja Chari",
                        "type": {
                            "id": 2,
                            "name": "Government"
                        },
                        "in_space": false,
                        "time_in_space": "P176DT2H39M29S",
                        "status": {
                            "id": 1,
                            "name": "Active"
                        },
                        "agency": {
                            "id": 44,
                            "url": "https://ll.thespacedevs.com/2.2.0/agencies/44/?format=api",
                            "name": "National Aeronautics and Space Administration",
                            "type": "Government"
                        },
                        "date_of_birth": "1977-06-24",
                        "date_of_death": null,
                        "nationality": "American",
                        "twitter": "https://twitter.com/Astro_Raja",
                        "instagram": "https://www.instagram.com/astro_raja/",
                        "bio": "Raja Jon Vurputoor Chari is an American test pilot and NASA astronaut of the class of 2017. He is a graduate of the U.S. Air Force Academy, MIT, and U.S. Naval Test Pilot School, and has over 2,000 flying hours.",
                        "profile_image": "https://spacelaunchnow-prod-east.nyc3.digitaloceanspaces.com/media/images/raja_chari_image_20211001184813.jpg",
                        "wiki": "https://en.wikipedia.org/wiki/Raja_Chari",
                        "last_flight": "2021-11-11T02:03:31Z",
                        "first_flight": "2021-11-11T02:03:31Z"
                    }
                },
                {
                    "id": 4637,
                    "role": {
                        "id": 34,
                        "role": "EV2",
                        "priority": 1
                    },
                    "astronaut": {
                        "id": 574,
                        "url": "https://ll.thespacedevs.com/2.2.0/astronaut/574/?format=api",
                        "name": "Kayla Barron",
                        "type": {
                            "id": 2,
                            "name": "Government"
                        },
                        "in_space": false,
                        "time_in_space": "P176DT2H39M29S",
                        "status": {
                            "id": 1,
                            "name": "Active"
                        },
                        "agency": {
                            "id": 44,
                            "url": "https://ll.thespacedevs.com/2.2.0/agencies/44/?format=api",
                            "name": "National Aeronautics and Space Administration",
                            "type": "Government"
                        },
                        "date_of_birth": "1987-09-19",
                        "date_of_death": null,
                        "nationality": "American",
                        "twitter": "https://twitter.com/Astro_Kayla",
                        "instagram": "https://www.instagram.com/astro_kayla/",
                        "bio": "Kayla Jane Barron is an American submarine warfare officer and NASA astronaut candidate of the class of 2017.",
                        "profile_image": "https://spacelaunchnow-prod-east.nyc3.digitaloceanspaces.com/media/images/kayla_barron_image_20211001184846.jpg",
                        "wiki": "https://en.wikipedia.org/wiki/Kayla_Barron",
                        "last_flight": "2021-11-11T02:03:31Z",
                        "first_flight": "2021-11-11T02:03:31Z"
                    }
                }
            ]
        },
        {
            "id": 433,
            "url": "https://ll.thespacedevs.com/2.2.0/spacewalks/433/?format=api",
            "name": "Expedition 66 EVA 2",
            "start": "2022-01-19T12:17:00Z",
            "end": "2022-01-19T19:28:00Z",
            "duration": "PT7H11M",
            "location": "International Space Station",
            "crew": [
                {
                    "id": 4634,
                    "role": {
                        "id": 33,
                        "role": "EV1",
                        "priority": 0
                    },
                    "astronaut": {
                        "id": 252,
                        "url": "https://ll.thespacedevs.com/2.2.0/astronaut/252/?format=api",
                        "name": "Anton Shkaplerov",
                        "type": {
                            "id": 2,
                            "name": "Government"
                        },
                        "in_space": false,
                        "time_in_space": "P709DT8H4M43S",
                        "status": {
                            "id": 1,
                            "name": "Active"
                        },
                        "agency": {
                            "id": 63,
                            "url": "https://ll.thespacedevs.com/2.2.0/agencies/63/?format=api",
                            "name": "Russian Federal Space Agency (ROSCOSMOS)",
                            "type": "Government"
                        },
                        "date_of_birth": "1972-02-20",
                        "date_of_death": null,
                        "nationality": "Russian",
                        "twitter": null,
                        "instagram": null,
                        "bio": "Anton Nikolaevich Shkaplerov (Russian: Антон Николаевич Шкаплеров) (born February 20, 1972 in Sevastopol, Ukrainian SSR) is a Russian cosmonaut. He is a veteran of three spaceflights and is a former Commander of the International Space Station.",
                        "profile_image": "https://spacelaunchnow-prod-east.nyc3.digitaloceanspaces.com/media/images/anton_shkaplero_image_20211001184311.jpg",
                        "wiki": "https://en.wikipedia.org/wiki/Anton_Shkaplerov",
                        "last_flight": "2021-10-05T08:55:02Z",
                        "first_flight": "2011-11-14T04:14:00Z"
                    }
                },
                {
                    "id": 4635,
                    "role": {
                        "id": 34,
                        "role": "EV2",
                        "priority": 1
                    },
                    "astronaut": {
                        "id": 650,
                        "url": "https://ll.thespacedevs.com/2.2.0/astronaut/650/?format=api",
                        "name": "Pyotr Dubrov",
                        "type": {
                            "id": 2,
                            "name": "Government"
                        },
                        "in_space": false,
                        "time_in_space": "P355DT3H45M19S",
                        "status": {
                            "id": 1,
                            "name": "Active"
                        },
                        "agency": {
                            "id": 63,
                            "url": "https://ll.thespacedevs.com/2.2.0/agencies/63/?format=api",
                            "name": "Russian Federal Space Agency (ROSCOSMOS)",
                            "type": "Government"
                        },
                        "date_of_birth": "1978-01-30",
                        "date_of_death": null,
                        "nationality": "Russian",
                        "twitter": null,
                        "instagram": null,
                        "bio": "Dubrov was selected by Roscosmos as a cosmonaut on 8 October 2012, as one of eight cosmonauts selected as part of Roscosmos's 2012 selection group.\r\nIn 2020 he was assigned to the backup crew of Soyuz MS-17, backing up Russian cosmonaut Sergey Kud-Sverchkov as Flight Engineer on ISS Expedition 63/64",
                        "profile_image": "https://spacelaunchnow-prod-east.nyc3.digitaloceanspaces.com/media/images/pyotr_dubrov_image_20201120155626.jpg",
                        "wiki": "https://en.wikipedia.org/wiki/Pyotr_Dubrov",
                        "last_flight": "2021-04-09T07:42:41Z",
                        "first_flight": "2021-04-09T07:42:41Z"
                    }
                }
            ]
        },
        {
            "id": 432,
            "url": "https://ll.thespacedevs.com/2.2.0/spacewalks/432/?format=api",
            "name": "Expedition 66 EVA 1",
            "start": "2021-12-02T11:15:00Z",
            "end": "2021-12-02T17:47:00Z",
            "duration": "PT6H32M",
            "location": "International Space Station",
            "crew": [
                {
                    "id": 4632,
                    "role": {
                        "id": 33,
                        "role": "EV1",
                        "priority": 0
                    },
                    "astronaut": {
                        "id": 557,
                        "url": "https://ll.thespacedevs.com/2.2.0/astronaut/557/?format=api",
                        "name": "Thomas Marshburn",
                        "type": {
                            "id": 2,
                            "name": "Government"
                        },
                        "in_space": false,
                        "time_in_space": "P337DT9H42M54S",
                        "status": {
                            "id": 1,
                            "name": "Active"
                        },
                        "agency": {
                            "id": 44,
                            "url": "https://ll.thespacedevs.com/2.2.0/agencies/44/?format=api",
                            "name": "National Aeronautics and Space Administration",
                            "type": "Government"
                        },
                        "date_of_birth": "1960-08-29",
                        "date_of_death": null,
                        "nationality": "American",
                        "twitter": "https://twitter.com/AstroMarshburn",
                        "instagram": null,
                        "bio": "Thomas Henry \"Tom\" Marshburn is an American physician and a NASA astronaut. He served as a Mission Specialist on STS-127. Marshburn was a member of the Soyuz TMA-07M crew which launched to ISS in December 2012 to join Expedition 34. Served as flight engineer for Expedition 34 and 35.",
                        "profile_image": "https://spacelaunchnow-prod-east.nyc3.digitaloceanspaces.com/media/images/thomas_marshbur_image_20211001184611.jpg",
                        "wiki": "https://en.wikipedia.org/wiki/Thomas_Marshburn",
                        "last_flight": "2021-11-11T02:03:31Z",
                        "first_flight": "2009-07-15T22:03:00Z"
                    }
                },
                {
                    "id": 4633,
                    "role": {
                        "id": 34,
                        "role": "EV2",
                        "priority": 1
                    },
                    "astronaut": {
                        "id": 574,
                        "url": "https://ll.thespacedevs.com/2.2.0/astronaut/574/?format=api",
                        "name": "Kayla Barron",
                        "type": {
                            "id": 2,
                            "name": "Government"
                        },
                        "in_space": false,
                        "time_in_space": "P176DT2H39M29S",
                        "status": {
                            "id": 1,
                            "name": "Active"
                        },
                        "agency": {
                            "id": 44,
                            "url": "https://ll.thespacedevs.com/2.2.0/agencies/44/?format=api",
                            "name": "National Aeronautics and Space Administration",
                            "type": "Government"
                        },
                        "date_of_birth": "1987-09-19",
                        "date_of_death": null,
                        "nationality": "American",
                        "twitter": "https://twitter.com/Astro_Kayla",
                        "instagram": "https://www.instagram.com/astro_kayla/",
                        "bio": "Kayla Jane Barron is an American submarine warfare officer and NASA astronaut candidate of the class of 2017.",
                        "profile_image": "https://spacelaunchnow-prod-east.nyc3.digitaloceanspaces.com/media/images/kayla_barron_image_20211001184846.jpg",
                        "wiki": "https://en.wikipedia.org/wiki/Kayla_Barron",
                        "last_flight": "2021-11-11T02:03:31Z",
                        "first_flight": "2021-11-11T02:03:31Z"
                    }
                }
            ]
        }
    ]
}