Sensra

Documentation

Integrate Sensra in minutes

Send your first event, validate grouping behavior, and start triaging incidents with AI summaries.

Step 1

Create project key

Step 2

Send first event

Step 3

Triage incidents

Quickstart

Use your project key with POST /api/v1/events.

curl -X POST /api/v1/events \
  -H "x-sensra-api-key: <your-key>" \
  -H "content-type: application/json" \
  -d '{
    "message":"TypeError: Cannot read properties of undefined",
    "service":"api-gateway",
    "route":"/api/users",
    "idempotencyKey":"evt_001"
  }'

Tip

Include idempotencyKey for retry-safe ingestion and duplicate protection.

FAQ

Can I send events from any backend stack?

Yes. The ingestion API accepts HTTP payloads from any language or framework.

How should I handle retries?

Use idempotency keys so retries are safe and duplicates are ignored.

Where do I manage API keys?

Inside Settings for each project in your dashboard workspace.