Jetron TicketFluid
Events

List an event's gallery images

GET
/events/{slug}/gallery

Lists gallery images for a public event in stable creation order, 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/gallery"
{  "status": true,  "data": {    "items": [      {        "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",        "imageURL": "http://example.com",        "altText": "string"      }    ]  }}