Aller au contenu

Introduction

https://tickr.coderise.cloud/api/v1

All public API endpoints are mounted under /api/v1. The version segment is part of the path; we won’t ship a breaking change without bumping it.

Tickr exposes two HTTP surfaces:

SurfacePath prefixAuthAudience
Internal API/api/...JWT (Bearer)Tickr web frontend only.
Public API/api/v1/...API key (Authorization: Bearer tkr_...)Third-party integrations.

The two surfaces share data but differ in shape. The public API is curated: fewer endpoints, simpler payloads, stable versioning, no UI-only fields. Use the internal API only if you are building a Tickr-internal feature — its contract may change at any release.

  • v1 is the only version today.
  • Breaking changes (renamed fields, removed endpoints, type changes) will be released as v2 and announced ahead of time.
  • Additive changes (new endpoints, new optional fields) ship in v1 without notice.