API overview

Base URL, keys, versioning, errors, pagination and idempotency.

Base URL: https://api.konec.to/v1
Format:   JSON over HTTPS
Spec:     https://api.konec.to/v1/openapi.json

Two surfaces

Public APIAdmin API
Path/v1/public/.../v1/...
CredentialPublishable key, allowed origins onlySecret key or OAuth token
Use fromBrowsers, event sites, componentsServers, MCP, integrations

Authentication

curl https://api.konec.to/v1/events \
  -H "Authorization: Bearer sk_live_..."

Errors

{ "error": { "code": "ticket_sold_out", "message": "Standard is sold out.", "request_id": "req_7Hk..." } }
HTTPMeaning
400Invalid request
401Missing or invalid credential
403Missing scope, or module not enabled (module_required)
404Not found
409Conflict, for example sold out or already checked in
429Rate limited

Pagination

List endpoints accept limit (up to 100) and cursor, and return next_cursor.

Idempotency

Send an Idempotency-Key header on every write. Repeating a request with the same key returns the first result.

Scopes

events:read, events:write, orders:read, orders:refund, pages:write, domains:buy, finance:read, finance:write, tasks:read, tasks:write, analytics:read

Plain-text version for agents: llm.konec.to/docs/api/overview.md