Everything you need to build with Vivid Vortex.
Step-by-step guides, API reference and code examples to integrate tracking, payments and automation into your network.
Explore by category
Documentation organized by platform area.
Getting started
Create your account, set up your network and launch your first offer.
Tracking & postbacks
Pixels, S2S postbacks, URL parameters and attribution.
API reference
REST endpoints, authentication, errors and pagination.
Automation
Rules, smartlinks, offer rotation and anti-fraud.
Payments & invoicing
Affiliate payouts, currencies, taxes and reconciliation.
Webhooks & SDKs
Real-time events and official libraries.
From zero to production in an afternoon.
Four essential guides covering the full journey: from your first API call to automated payouts.
View all guidesAuthenticate your first call
Generate an API token and verify the connection with /v1/ping.
Set up offer tracking
Create an offer, define the postback and test a conversion.
Connect your first webhook
Receive signed conversion events at your endpoint.
Automate affiliate payouts
Schedule payouts with Stripe or PayPal and approval rules.
// Install the SDK: npm install @vividvortex/sdkimport { Vortex } from '@vividvortex/sdk'const vortex = new Vortex('vv_live_4f8a…')const conv = await vortex.conversions.create({offerId: 8842, affiliateId: 1207,payout: 42.50, status: 'approved'}) // → synced to 3 destinations
Copy, paste, deploy.
Every endpoint in the reference includes runnable examples in the four official languages, with your sandbox keys already inserted.