Fictura
Events
GET/api/v1/events/config

Event config

The kill-switch list, readable by anything that sends events — so disabled events can be skipped at the source instead of discarded on arrival.

cURL
curl https://api.fictura.co/api/v1/events/config \
  -H "x-api-key: gk_..."
200 — application/json
{
  "ok": true,
  "disabled_events": ["element_tapped", "debug_ping"]
}

The list is the same one the SDK receives inside its config payload — mobile apps never call this endpoint directly. It exists for server-side senders: check it (it's cached about 30 seconds server-side, so poll casually) and skip disabled names before building a batch.

There is no event query API

This endpoint is configuration, not data. Reading events back out happens in the dashboard, via CSV export, or continuously via PostHog mirroring — there is no public GET-events endpoint today.