Jetron TicketFluid
Events

Get an event

GET
/events/{slug}

Fetches a single public event by its slug, scoped to the API key host.

Authorization

ApiKeyAuth
AuthorizationBearer <token>

Your public API key (e.g. jt_public_...) passed as a Bearer token.

In: header

Path Parameters

slug*string

The event's URL slug.

Header Parameters

If-None-Match?string

An ETag from a previous response. Returns 304 if unchanged.

Response Body

application/json

application/json

application/json

curl -X GET "https://example.com/events/string"
{  "status": true,  "data": {    "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",    "name": "string",    "slug": "string",    "posterImageURL": "string",    "posterAspectRatio": 0,    "category": {      "name": "string",      "slug": "string"    },    "cheapestTicketPrice": 0,    "formattedCheapestPrice": "string",    "description": "string",    "previewDescription": "string",    "date": "2019-08-24T14:15:22Z",    "closingDate": "2019-08-24T14:15:22Z",    "timezone": "string",    "status": "LIVE",    "isComingSoon": true,    "instagram": "string",    "website": "string",    "xAccount": "string",    "country": "NIGERIA",    "state": "string",    "lga": "string",    "street": "string",    "directions": "string",    "lng": 0,    "lat": 0,    "hideLocation": true,    "hostMessage": "string",    "createdAt": "2019-08-24T14:15:22Z",    "headliners": [      {        "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",        "name": "string",        "role": "string",        "imageURL": "string",        "isMainArtist": true,        "artist": {          "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",          "artistPlatformId": "string",          "platform": "SPOTIFY",          "name": "string",          "slug": "string",          "imageURL": "string",          "description": "string",          "bannerURL": "string"        }      }    ]  }}