API endpoint that allows past Events to be viewed.

FILTERS: 'type', 'type__ids', 'program', 'last_updated'

GET: Return a list of past Events

ORDERING: Fields - 'date', 'last_updated'

Example - /2.2.0/event/previous/?ordering=-date

GET /2.2.0/event/previous/?format=api&offset=980
HTTP 200 OK
Allow: GET
Content-Type: application/json
Vary: Accept

{
    "count": 981,
    "next": null,
    "previous": "https://lldev.thespacedevs.com/2.2.0/event/previous/?format=api&limit=10&offset=970",
    "results": [
        {
            "id": 2,
            "url": "https://lldev.thespacedevs.com/2.2.0/event/2/?format=api",
            "slug": "crew-dragon-docking-with-iss",
            "name": "Crew Dragon docking with ISS",
            "updates": [],
            "last_updated": "2024-03-06T20:01:20Z",
            "type": {
                "id": 2,
                "name": "Docking"
            },
            "description": "Crew Dragon 1, launched on March 2, will attempt to dock autonomously with the International Space Station for the first time.",
            "webcast_live": false,
            "location": "International Space Station",
            "news_url": null,
            "video_url": null,
            "info_urls": [],
            "vid_urls": [],
            "feature_image": "https://thespacedevs-prod.nyc3.digitaloceanspaces.com/media/images/spacex_dm-2_cre_image_20200504065311.jpeg",
            "date": "2019-03-03T08:30:00Z",
            "date_precision": null,
            "duration": null,
            "agencies": [],
            "launches": [],
            "expeditions": [],
            "spacestations": [],
            "program": []
        }
    ]
}