Talaria

Docs / API

API overview

Enough for integrators to send events. A full OpenAPI reference can follow as the surface grows.

Authentication

Project-scoped ingest credentials. Prefer header auth on HTTPS only.

http
X-API-Key: tal_live_YOUR_KEY
# or
Authorization: Bearer tal_live_YOUR_KEY

Event shape

Single-event and batch ingest accept JSON bodies for exceptions and structured logs.

event.jsonjson
{
  "message": "Payment failed",
  "level": "error",
  "environment": "production",
  "release": "1.4.2",
  "exception": {
    "type": "RuntimeException",
    "value": "Gateway timeout",
    "stacktrace": []
  },
  "tags": {
    "area": "checkout"
  }
}

Environments & releases

Set environment (e.g. production, staging) and optional release so the dashboard can filter issues and correlate deploys. Fingerprints are computed server-side — clients never send a fingerprint field.