Create referral codes, track signups, calculate commissions, export payout reports. Every SaaS eventually needs this. Rewardful charges $49/mo.
Every operation in Dividend is available through a JSON REST API. No SDK required — use curl, fetch, or any HTTP client.
GET /api/affiliates — list all affiliates with optional search and filter query parametersPOST /api/affiliates — create a new affiliate recordGET /api/affiliates/{id} — retrieve a single affiliate by IDPUT /api/affiliates/{id} — update an existing affiliateDELETE /api/affiliates/{id} — remove a affiliateGET /api/stats — aggregated statistics with status breakdownGET /api/health — health check endpoint for monitoringTeams outgrow spreadsheet-based affiliates tracking around the same time they realize SaaS alternatives want $15 to $50 per seat per month. Dividend is a single binary that handles the same job without the recurring bill or the vendor dependency.
Download the binary and run it. Dividend starts serving immediately with a dashboard at localhost and a REST API for automation. No cloud account, no API keys to provision, no monthly invoice. Your data lives in a SQLite file you can back up, move, or query directly.
Deploy Dividend as a systemd service, a Docker container, or a bare process behind tmux. It reads two environment variables: PORT and DATA_DIR. Everything else is self-contained. The /api/health endpoint returns the service status and affiliates count, which you can wire into your existing monitoring stack.
GET /api/affiliates — List all affiliates. Supports ?q=keyword for search and ?status=value for filteringPOST /api/affiliates — Create a new affiliate. Send JSON with at least nameGET /api/affiliates/{id} — Fetch one affiliate by IDPUT /api/affiliates/{id} — Update fields on an existing affiliateDELETE /api/affiliates/{id} — Remove a affiliateGET /api/stats — Returns total count and breakdown by statusGET /api/health — Returns {"status":"ok"} for uptime monitoringSelf-hosted affiliate program manager. Self-hosted on your infrastructure. Your data never leaves your server.
curl -fsSL https://stockyard.dev/install.sh | sh -s -- --tool dividend
PORT=9870 ./dividend
http://localhost:9870
Single binary. Embedded SQLite. No Docker. No database. No dependencies.
Your license key arrives by email within 5 minutes of checkout. Set it as an environment variable and restart the binary.
export DIVIDEND_LICENSE_KEY=stockyard_xxxxxxxxxxxxxxxxxxxx ./dividend
No cloud connectivity required. The binary validates the key offline with Ed25519 signatures.