Events

Description: Shows upcoming or ongoing events related to the search query.

API Response Structure:

{
  "events": [
    {
      "title": "Event Name",
      "datetime": {
        "start": "2023-08-15T19:00:00Z",
        "end": "2023-08-15T22:00:00Z",
        "timezone": "UTC"
      },
      "location": {
        "venue": "Venue Name",
        "address": "123 Main St",
        "city": "City Name",
        "country": "Country",
        "coordinates": {
          "lat": 40.7128,
          "lng": -74.0060
        }
      },
      "details": {
        "description": "Event description",
        "category": "Concert/Conference/Sport",
        "organizer": "Organizer Name",
        "capacity": 5000,
        "ageRestriction": "18+"
      },
      "tickets": {
        "available": true,
        "priceRange": {
          "min": "50.00",
          "max": "200.00",
          "currency": "USD"
        },
        "purchaseUrl": "https://example.com/tickets"
      }
    }
  ],
  "filters": {
    "date": ["Today", "This Weekend", "Next Month"],
    "category": ["Music", "Sports", "Arts"],
    "price": ["Free", "Paid"]
  },
  "type": "events"
}

Fields:

  • events (array): Event listings

    • title (string): Event name

    • datetime (object): Time information

    • location (object): Venue details

    • details (object): Event information

    • tickets (object): Ticket availability

  • filters (object): Search filters

  • type (string): Always "events"