Dashpoint Developer Platform

Public API

A small, focused HTTP API for organisers to automate events, ticketing, orders, and coupons from their own tooling — or from an AI assistant via the Dashpoint MCP server.

Getting started

  1. Ensure your organisation's plan includes the Public API feature.
  2. Open Settings → Developers → API keys and create a new key with the scopes you need.
  3. 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"
  }'