Everything you need to integrate your gaming platform with Revvvs.

Getting Started with Revvvs

Revvvs is an affiliate management platform built for iGaming operators. It handles tracking, attribution, commission calculation, and affiliate portal management so you can focus on running your gaming business.

How it works

  1. You integrate. Your gaming platform sends player events (registrations, deposits, revenue) to Revvvs via our S2S API.
  2. We attribute. Revvvs matches player activity to the affiliate who referred them, using click-based attribution.
  3. We calculate. Our commission engine applies your deal structures (CPA, RevShare, Hybrid) and produces accurate statements.
  4. Affiliates see results. Your affiliates log into a branded portal to view their performance, manage tracking links, and track earnings. You can optionally serve the portal on your own custom domain for a fully white-labeled experience.

What you'll need

  • An API key: Generated from your Revvvs admin console (Settings > API Keys)
  • S2S endpoint access: Your backend needs to send HTTP POST requests to our events API
  • Event mapping: Map your platform's player events to our event schema

Integration timeline

Most operators are live within 3-5 business days:

DayTask
1API key setup, review event schema, begin mapping
2-3Implement S2S event sending from your platform
4Test with sandbox/staging events, verify attribution
5Go live, verify first real affiliate clicks and conversions

Quick start

Send your first test event:

curl -X POST https://revvvs.com/api/v1/events \
  -H "Content-Type: application/json" \
  -H "X-API-Key: rv_your_api_key_here" \
  -d '{
    "event_type": "registration",
    "event_time": "2026-03-15T10:00:00Z",
    "brand_id": "your-brand-uuid",
    "player_external_ref": "player_001",
    "idempotency_key": "test_reg_001",
    "country": "GB"
  }'

If you receive a 202 Accepted response with "status": "accepted", your integration is working.

Next: Authentication