Skip to main content
The Tickable API gives you programmatic access to your events, ticket types, timeslots, and webhooks. Use it to build custom integrations, sync data with your systems, or automate workflows.

Base URL

All API requests are made to:
https://api.tickable.io

Authentication

Every request must include a valid token in the Authorization header:
Authorization: Bearer {token}
You can authenticate with either:
  • API Key — created from the Tickable dashboard. Best for server-to-server integrations.
  • OAuth2 access token — obtained via the OAuth2 flow. Best for third-party apps acting on behalf of a user.

Authentication Guide

Learn how to authenticate your requests

Key Concepts

Events

Events are the core resource. Each event has ticket types and timeslots.

Ticket Types

Ticket types define what can be purchased for an event (e.g. Early Bird, VIP).

Timeslots

Timeslots represent when an event takes place. An event can have one or many.

Webhooks

Get notified in real-time when orders are placed or tickets are scanned.

Response Format

All list endpoints return paginated responses:
{
  "data": [...],
  "pagination": {
    "total": 142,
    "limit": 25,
    "offset": 0,
    "has_more": true
  }
}

Need Help?

If you have questions or run into issues, reach out to us at tickable.nl.