API endpoint that allows all Events to be viewed.

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

GET: Return a list of all Events

SEARCH EXAMPLE: /2.2.0/event/?search=Dragon Searches through name

ORDERING: Fields - 'date', 'last_updated' Example - /2.2.0/event/?ordering=-date

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

{
  "count": 1161,
  "next": null,
  "previous": "https://ll.thespacedevs.com/2.2.0/event/?format=api&limit=10&offset=1150&ordering=-date",
  "results": [
    {
      "id": 2,
      "url": "https://ll.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": []
    }
  ]
}