Track referrals.
Automate commissions.
Reward partners.

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.

API-firstTrack from any stack
AppsFlyerDirect webhook support
HMAC-signed APITamper-proof tracking
No feesNo cut of referred revenue

Everything you need to run a referral program

From partner onboarding to payout — a complete toolkit built for developers and finance teams.

P

Partner Management

Create partners with auto-generated tracking codes. Invite them to a self-service portal where they see stats and set payout details.

A

Conversion Tracking API

HMAC-signed REST endpoint with rate limiting and 24-hour idempotency. Send events from any backend or mobile stack.

M

MMP Integration

Point AppsFlyer Push API directly at your webhook URL — no proxy server, no code. Adjust and Branch postbacks coming next.

R

Flexible Accrual Rules

Fixed, percentage, or recurring commissions with configurable attribution windows. Per-partner overrides.

$

Batch Payouts + CSV

Generate pending payouts for all partners with one click. Export CSV for your bank portal or finance team.

K

Partner Portal

Partners log in separately to see conversions, payments, and balance. They set their own payout details.

T

Transparent Pricing

Free for small programs. Paid plans from $49/mo — no sales calls, no custom quotes, no yearly contracts. Upgrade or cancel anytime.

D

Integration Guide

In-app documentation with code samples in Node.js, Python, and curl. AI-assisted integration prompts included.

How it works

Get from zero to tracking in four steps.

1

Create Partners

Add referral partners — each gets a unique tracking code automatically.

2

Integrate Tracking

Send conversion events from your backend via HMAC-signed API or AppsFlyer webhook.

3

Configure Rules

Set fixed, percentage, or recurring commission rules — globally or per partner.

4

Generate Payouts

Batch-create pending payments, export CSV, and mark completed as you pay.

Pilot mode

The platform is running in pilot mode

We're onboarding early users and iterating fast. Pricing is paused while we polish things — using the product is free during the pilot. If you run into something rough or have an idea, please let us know.

Refledger vs Rewardful

If you're shopping referral platforms — here's where we differ. Honest comparison, not a takedown.

RefledgerRewardful
Free planYes — 5 partners, 1k events/moNo (14-day trial only)
Entry paid price$19 / month$49 / month
Transaction fee on referred revenueNone9%
HMAC-signed event APIYesPixel / JS snippet only
AppsFlyer direct webhookYesNo (Stripe-native)
Stack-agnostic trackingAny backendStripe-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.

Developer-friendly integration

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.

Ready to get started?

Create your account and set up your first referral partner in minutes. Free during the pilot — your feedback shapes what ships next.