Dashpoint Developer Platform
Dashpoint API
A focused HTTP API for organisers to automate events, ticketing, orders and coupons from their own tools — or from an AI assistant through the Dashpoint MCP server.
Getting started
- Make sure your organisation’s plan includes API access.
- Open Settings → Developers → API keys and create a key with the scopes you need.
- Call the API over HTTPS with the
Authorization: Bearer <your-key>header.
Example
curl -X POST 'https://api.dashpoint.app/v1/public-api/events' \
-H 'Authorization: Bearer dp_live_XXXX' \
-H 'Content-Type: application/json' \
-d '{
"eventName": "Summer festival 2026",
"description": "A full-day outdoor festival.",
"startDateTime": "2026-07-15T18:00:00Z",
"endDateTime": "2026-07-15T23:00:00Z",
"timezone": "Europe/Berlin"
}'