A developer-first platform for referral and affiliate programs — with flexible payout rules and a self-service partner portal.
Free during the pilot. No credit card required.
From partner onboarding to payout — a complete toolkit built for developers and finance teams.
Create partners with auto-generated tracking codes. Invite them to a self-service portal where they see stats and set payout details.
HMAC-signed REST endpoint with rate limiting and 24-hour idempotency. Send events from any backend or mobile stack.
Point AppsFlyer Push API directly at your webhook URL — no proxy server, no code. Adjust and Branch postbacks coming next.
Fixed, percentage, or recurring commissions with configurable attribution windows. Per-partner overrides.
Generate pending payouts for all partners with one click. Export CSV for your bank portal or finance team.
Partners log in separately to see conversions, payments, and balance. They set their own payout details.
Free for small programs. Paid plans from $49/mo — no sales calls, no custom quotes, no yearly contracts. Upgrade or cancel anytime.
In-app documentation with code samples in Node.js, Python, and curl. AI-assisted integration prompts included.
Get from zero to tracking in four steps.
Add referral partners — each gets a unique tracking code automatically.
Send conversion events from your backend via HMAC-signed API or AppsFlyer webhook.
Set fixed, percentage, or recurring commission rules — globally or per partner.
Batch-create pending payments, export CSV, and mark completed as you pay.
If you're shopping referral platforms — here's where we differ. Honest comparison, not a takedown.
| Refledger | Rewardful | |
|---|---|---|
| Free plan | Yes — 5 partners, 1k events/mo | No (14-day trial only) |
| Entry paid price | $19 / month | $49 / month |
| Transaction fee on referred revenue | None | 9% |
| HMAC-signed event API | Yes | Pixel / JS snippet only |
| AppsFlyer direct webhook | Yes | No (Stripe-native) |
| Stack-agnostic tracking | Any backend | Stripe-first |
Both platforms offer partner portals, recurring commissions, and Stripe-backed subscription billing for running your program. Pricing accurate as of publication — check vendor sites for the latest.
Send conversion events with a single API call. HMAC-signed for security, idempotent for reliability.
curl — track a conversion
BODY='{"partnerCode":"a1b2c3d4","eventName":"signup"}'
SIG=$(echo -n "$BODY" | openssl dgst -sha256 \
-hmac "$SIGNING_SECRET" | awk '{print $2}')
curl -X POST https://api.example.com/api/conversions/track \
-H "Content-Type: application/json" \
-H "X-API-Key: $API_KEY" \
-H "X-Signature: sha256=$SIG" \
-d "$BODY"AppsFlyer — direct webhook (no code)
# Paste this URL into AppsFlyer → Push API:
POST https://api.example.com/api/webhooks/mmp/
appsflyer/<webhookToken>
# Field mapping (automatic):
# media_source → partnerCode
# event_name → eventName
# event_revenue → revenue
# event_id → idempotencyKey
# No HMAC signing needed.
# Always responds 200 — no retries on your errors.Create your account and set up your first referral partner in minutes. Free during the pilot — your feedback shapes what ships next.