API Keys

Manage authentication credentials for the Zyvan API

Generate New API Key

Active Keys (0)

How to use your API key

Ingest an event

curl -X POST http://localhost:3000/v1/events \
  -H "x-api-key: zv_live_<your_key>" \
  -H "Idempotency-Key: unique-event-key" \
  -H "Content-Type: application/json" \
  -d '{"endpoint_id":"<uuid>","event_type":"order.created","payload":{}}'

Check analytics summary

curl http://localhost:3000/v1/analytics/summary \
  -H "x-api-key: zv_live_<your_key>"