Everything you need to integrate with the TicketDaddy API. Build experiences for events, tickets, stays, and more.
Interactive API documentation
Learn about API keys
Get up and running fast
Understand usage limits
Get started with the TicketDaddy API in just a few steps.
Go to your dashboard and create a new API key. Use a secret key (sk_*) for server-side requests or a public key (pk_*) for client-side requests.
Create API KeyUse your API key to authenticate requests. Include it in the Authorization header:
curl -X GET 'https://api.ticketdaddy.io/v1/events' \
-H 'Authorization: Bearer sk_live_your_api_key' \
-H 'Content-Type: application/json'Check out the interactive API reference to explore all available endpoints, test requests, and see response formats.
View API ReferenceThe TicketDaddy API uses API keys for authentication. There are two types of keys:
Include your API key in the Authorization header using the Bearer scheme:
Authorization: Bearer sk_live_your_api_keyRate limits help ensure fair usage and protect our infrastructure.
| Key Type | Rate Limit | Window |
|---|---|---|
| sk_* | 1,000 requests | Per minute |
| pk_* | 10,000 requests | Per minute |
Each response includes headers to help you track your usage:
X-RateLimit-Limit: 1000
X-RateLimit-Remaining: 999
X-RateLimit-Reset: 1699574400