Skip to main content
GET
/
events
/
{id}
Get a single event
curl --request GET \
  --url https://eddyhdzg.com/api/v1/events/{id}
{
  "id": "<string>",
  "title": "<string>",
  "eventId": "<string>",
  "shortDescription": "<string>",
  "startDate": "2023-11-07T05:31:56Z",
  "endDate": "2023-11-07T05:31:56Z",
  "venue": {
    "name": "<string>",
    "formattedAddress": "<string>"
  },
  "platforms": [
    {
      "id": "<string>",
      "platform": "luma",
      "url": "<string>",
      "attendees": 123,
      "price": "<string>"
    }
  ],
  "tags": [
    {
      "id": 123,
      "label": "<string>",
      "category": "<string>"
    }
  ],
  "aiPick": true,
  "isFree": true
}

Path Parameters

id
string
required

Canonical event id (Convex events document id)

Response

Event found (or paused payload)

id
string
required

Canonical event id (Convex events document id). Stable across re-rankings of source platforms.

title
string | null
required
eventId
string
deprecated

Alias of id — kept for back-compat. Will be removed in a future release.

shortDescription
string | null
startDate
string<date-time> | null
endDate
string<date-time> | null
venue
object
platforms
object[]

All source URLs for this event, sorted by platform preference (Luma > Eventbrite > Meetup > …) with attendees as the tiebreaker.

tags
object[]
aiPick
boolean
isFree
boolean