G
GlobalEventBase
Event API

Get event

Retrieve a specific event by its unique identifier.

GET
/api/events/{id}

Path Parameters

id*string

The unique ID of the event.

Response Body

application/json

curl -X GET "https://globaleventbase.com/api/events/string"
{
  "id": "string",
  "title": "string",
  "description": "string",
  "start_date": "2019-08-24T14:15:22Z",
  "end_date": "2019-08-24T14:15:22Z",
  "location": {
    "city": "string",
    "country": "string",
    "venue": "string",
    "coordinates": {
      "lat": 0,
      "lng": 0
    }
  },
  "categories": [
    "string"
  ],
  "raw_payload": {}
}
Empty