Skip to content

Does Tickr have a public API?

Yes — under /api/v1/..., authenticated by API key. Full documentation is published at /en/api/.

The public API covers:

  • Projects, clients, tasks, tags (read + write).
  • Time entries (read + bulk upsert + per-entry edit).
  • Cursor-paginated lists, RFC 7807 errors, per-key rate limiting.

To get started:

  1. Create an API key (Settings → API keys).

  2. Try it:

    Fenêtre de terminal
    curl https://tickr.coderise.cloud/api/v1/projects \
    -H "Authorization: Bearer tkr_live_<random>"
  3. Browse the endpoint reference for the full list.