Get event
curl --request GET \
--url https://api.tickable.io/events/{id} \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.tickable.io/events/{id}"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.tickable.io/events/{id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.tickable.io/events/{id}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.tickable.io/events/{id}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.tickable.io/events/{id}")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.tickable.io/events/{id}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"id": "550e8400-e29b-41d4-a716-446655440000",
"title": "Summer Festival 2026",
"description": "Annual summer music festival",
"slug": "summer-festival-2026",
"location": "Vondelpark",
"address": "Vondelpark 1, Amsterdam",
"website": "https://summerfestival.nl",
"image_url": "https://cdn.tickable.nl/events/header.jpg",
"is_public": true,
"sales_starts_at": "2026-05-01T00:00:00Z",
"created_at": "2026-04-01T12:00:00Z",
"ticket_types": [
{
"id": "b2c4e6a8-1234-4f5a-9c8d-0e1f2a3b4c5d",
"name": "Early Bird",
"description": "Limited early bird tickets",
"price": 25,
"min_per_order": 1,
"max_per_order": 10,
"total_available": 500,
"visibility": "visible"
}
],
"timeslot": {
"id": "d4e5f6a7-8901-4b2c-3d4e-5f6a7b8c9d0e",
"title": "Morning Session",
"starts_at": "2026-06-15T10:00:00Z",
"ends_at": "2026-06-15T12:00:00Z",
"total_available": 200,
"ticket_type_ids": [
"b2c4e6a8-1234-4f5a-9c8d-0e1f2a3b4c5d"
]
}
}Events
Get Event
Retrieve a single event with its ticket types. If the event has exactly one timeslot, it is included as timeslot. Requires the events.read scope.
GET
/
events
/
{id}
Get event
curl --request GET \
--url https://api.tickable.io/events/{id} \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.tickable.io/events/{id}"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.tickable.io/events/{id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.tickable.io/events/{id}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.tickable.io/events/{id}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.tickable.io/events/{id}")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.tickable.io/events/{id}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"id": "550e8400-e29b-41d4-a716-446655440000",
"title": "Summer Festival 2026",
"description": "Annual summer music festival",
"slug": "summer-festival-2026",
"location": "Vondelpark",
"address": "Vondelpark 1, Amsterdam",
"website": "https://summerfestival.nl",
"image_url": "https://cdn.tickable.nl/events/header.jpg",
"is_public": true,
"sales_starts_at": "2026-05-01T00:00:00Z",
"created_at": "2026-04-01T12:00:00Z",
"ticket_types": [
{
"id": "b2c4e6a8-1234-4f5a-9c8d-0e1f2a3b4c5d",
"name": "Early Bird",
"description": "Limited early bird tickets",
"price": 25,
"min_per_order": 1,
"max_per_order": 10,
"total_available": 500,
"visibility": "visible"
}
],
"timeslot": {
"id": "d4e5f6a7-8901-4b2c-3d4e-5f6a7b8c9d0e",
"title": "Morning Session",
"starts_at": "2026-06-15T10:00:00Z",
"ends_at": "2026-06-15T12:00:00Z",
"total_available": 200,
"ticket_type_ids": [
"b2c4e6a8-1234-4f5a-9c8d-0e1f2a3b4c5d"
]
}
}Authorizations
Pass as Authorization: Bearer {token}. Accepts either an OAuth2 JWT access token or an API key (tk_live_...) created from the Tickable dashboard.
Path Parameters
Event ID
Example:
"550e8400-e29b-41d4-a716-446655440000"
Response
Event found
Example:
"550e8400-e29b-41d4-a716-446655440000"
Example:
"Summer Festival 2026"
Example:
"Annual summer music festival"
Example:
"summer-festival-2026"
Example:
"Vondelpark"
Example:
"Vondelpark 1, Amsterdam"
Example:
"https://summerfestival.nl"
Example:
"https://cdn.tickable.nl/events/header.jpg"
Example:
true
Example:
"2026-05-01T00:00:00Z"
Example:
"2026-04-01T12:00:00Z"
Show child attributes
Show child attributes
Included when the event has exactly one timeslot
Show child attributes
Show child attributes