Developers

Send events. Get outcomes.

Zentra is designed to be driven by events. This page shows the intended developer experience. Examples are illustrative and not connected to a live service.

01The loop, in code

Event JSON → Zentra → workflow → action.

{
  "type": "reconciliation.mismatch",
  "source": "payments-gw",
  "occurred_at": "2026-03-04T08:32:11Z",
  "entity": {
    "kind": "settlement_batch",
    "id": "B-2291"
  },
  "data": {
    "ledger_total": 118450,
    "gateway_total": 118195,
    "currency": "INR"
  }
}
Zentra
  1. Ingest
  2. Signal
  3. Context and policy
Workflow
  1. reconciliation.mismatch → wf_recon_mismatch
  2. assign investigation (review)
  3. verify totals

Example data

02Interactive example

Send an example event. Watch it process.

POST /api/v1/eventsExample · not connected to a live service
curl -X POST https://YOUR_ZENTRA_HOST/api/v1/events \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -H "Idempotency-Key: evt-2026-03-04-0001" \
  -d '{"type":"reconciliation.mismatch","source":"payments-gw","occurred_at":"2026-03-04T08:32:11Z","entity":{"kind":"settlement_batch","id":"B-2291"},"data":{"ledger_total":118450,"gateway_total":118195,"currency":"INR"}}'
Runs locally in your browser. Nothing is sent.
  1. Receiving event…
  2. Enriching context…
  3. Evaluating policy…
  4. Preparing workflow…
// Response appears here after you send the example event.

03Building blocks

What you will build with.

01

Event ingestion

POST an event with a type, source, timestamp and entity. Use an idempotency key so retries are safe.

02

Webhooks

Receive events from systems that can call a URL. Outbound webhooks notify you of signals and outcomes.

03

Workflow triggers

Trigger workflows by event type, signal condition, schedule, or manually.

04

Authentication

Scoped API keys bound to a workspace. Keys are shown once and can be rotated or revoked.

05

Logs

Request, event and run logs with replay, so you can see what Zentra received and did.

06

Documentation

Concepts, guides and reference, using the same object model as the product.

Get started

Connect one workflow.
See what Zentra finds.

Sample data is used throughout this site.