Public API & API Keys | Planadar Help
Public API & API Keys
Read your event data programmatically with the Planadar REST API. API keys are available on the Scale plan.
Create a key
Settings → Integrations → API Access → Create key. The key (plk_…) is shown once — copy it somewhere safe. Keys are organizer-level (they cover all your events), read-only, and can be revoked anytime.
Authentication
Send the key as a Bearer token:
Authorization: Bearer plk_your_api_key
Base URL
https://supabase.planadar.com/functions/v1/public-api
Endpoints
GET /events— list your eventsGET /events/{id}— a single eventGET /events/{id}/registrations— attendees + check-in statusGET /events/{id}/orders— paid ticket orders
List endpoints accept ?limit (max 100) and ?offset, and return { "object": "list", "data": [ … ] }. Keys are rate-limited to 120 requests/min.
Full reference: planadar.com/developers.