last updated · 2026-05-11
Payout calculation.
The full math. Classic accounts settle to a flat $15 floor, prorated by uptime. Sales Nav accounts settle to a per-account quote that always nets above $15 after seat cost.
Classic ($15 / month)
Every qualified uptime hour earns the same fraction of $15. We track uptime in 5-minute buckets. A bucket counts when the node is green — session healthy, pace under ceiling, geography stable.
# for a 30-day monthqualified_hours = sum(buckets where state == "green") / 12target_hours = 30 * 24 * 0.80 # 80% = full payoutpayout_usd = min(15, 15 * qualified_hours / target_hours)
The 80% floor matters. Hit 80% uptime and you earn the full $15. Above 80% does not pay more — extra capacity earns assignment priority instead.
Sales Nav (per-account quote)
Sales Nav settlement is different because seat cost varies. You keep paying LinkedIn for your seat. We pay a flat fee, quoted at onboarding, that nets > $15 after seat cost — or we do not onboard the node.
# per-account quote, set at onboardingfee_usd = quote(seat_geo, seat_tier, account_age)net_usd = fee_usd - seat_cost_usdguarantee = net_usd > 15 # enforced
Settlement
- Period: 1st → last day of prior month.
- Send date: 25th of each month, via Wise, USD with auto-FX.
- KYC: you complete it once with Wise. We never see ID documents.
- Fees: zero deducted from your payout — Wise transfer fee is on us.
Partial-month proration
Joining mid-month? Your first settlement is 15 * (qualified_hours_since_connect / target_hours_remaining). Disconnecting mid-month? Same formula for days you were online. We never claw back; we do not pay for time we did not get.