Skip to main content
This endpoint is live in production today, served by the FloKit measurement gateway. It is separate from the v1 REST API, which is still in design-partner preview.
The measurement gateway receives server-to-server callbacks from MMPs, normalizes them into canonical FloKit events, deduplicates, and writes them to the analytics warehouse. Adjust is the first supported vendor; the endpoint is vendor-pluggable. Base URL: https://ingest.flokitai.com

GET / POST /ingest/:vendor

Accepts a single MMP callback per request. Both GET (query parameters — Adjust’s default callback style) and POST are supported.

Authentication

  • secret query parameter — per-vendor shared secret, compared in constant time. Requests with a missing or wrong secret get 401.
  • app_token query parameter — the vendor app token; FloKit maps it to your workspace server-side.
  • An optional per-vendor IP allowlist can additionally restrict callers.

Adjust callback URL

Configure this as the callback URL in your Adjust dashboard (placeholders in {} are filled by Adjust):
Mapping notes (Adjust adapter):
  • Vendor event tokens are translated to canonical FloKit event types via your workspace’s mapping configuration. Unmapped event tokens are dropped, counted in the dropped field.
  • created_at becomes the event’s occurred_at (Unix seconds or ISO 8601 accepted); events with a missing or invalid created_at are dropped.
  • os_name is normalized to ios / android; country is uppercased.
  • revenue, currency, event_token, and activity_kind are preserved in the event’s properties.
  • Device identifiers (adid, idfa, gps_adid) and the FloKit user_id partner parameter are carried for identity joining.

Example

Response

Deduplication

Events are deduplicated on a stable event ID with a 30-day window. Adjust callbacks without a stable ID get a derived ID hashed from the vendor, app, user, event type, timestamp, and raw event ID — so redelivered callbacks count as duplicate instead of being double-written. If a write fails, the dedup claim is released and the request returns 500, so the vendor’s retry re-processes the event safely.

Errors


GET /healthz

Health check.