BackNova v3.0
SOLO Loading...
🔒

PII-Zero Architecture

Your lead data is protected by design

How it works:
• Lead data (name, email, phone) goes directly to your PP — we don't store it
• For AI learning we only store SHA-256 hashes + email domain
• IP is hashed for fraud detection (repeat visitors, flooding)
• Your tracker's sub IDs stay private — we only pass click_id for postback matching

📡 Postback URL for PP

Give this URL to your PP/CPA network. They'll send conversion data back to BackNova when a lead converts.

https://api.backnova.xyz/api/postback?api_key=YOUR_API_KEY&click_id={clickid}&status={status}&payout={payout}

📖 Parameter Reference

Required Parameters
  • api_keyYour BackNova API key (keep secret!)
  • click_idThe click_id you passed when sending the lead (links conversion to your tracker)
  • statusConversion status (see list below)
Accepted Statuses
🟢 APPROVED
approved, accepted, converted, confirmed, sale, paid, qualified, ftd, first_deposit, rebill
🟡 PENDING
pending, lead, deposit, submitted, new, registered, callback, waiting, hold
🔴 REJECTED
rejected, declined, trash, junk, duplicate, failed, cancelled, no_answer, unqualified
⚫ CHARGEBACK
chargeback, refund, reversed, dispute
💡 Any status not in the list will be treated as pending
Optional Parameters
  • payoutCommission amount (e.g., 15.50)
  • txidCPA network transaction ID

What happens when PP sends a postback

BackNova finds the lead by click_id
Lead status is updated (approved/rejected/pending)
Your ROI and revenue stats are updated
🔄Postback is forwarded to your tracker (if configured)

🔑 Your API Key

bn_live_••••••••••••••••••••
⚠️ Keep your API key secret! Do not share it publicly or commit it to version control.

🎯 Source Code Generator

Generate SDK integration code for each traffic source. Use different source names to track performance separately.

Use unique names like: facebook_us, tiktok_crypto, google_cpc

Quick templates:

📊 Your Active Sources

Loading sources...

🔄 Tracker Postback Forward

BackNova will automatically forward conversion data to your tracker (Keitaro, Binom, Voluum, etc.) so you see ROI in your stats.

Available tokens: {click_id} {event_id} {status} {payout}

Quick templates:
How it works:
1. PP sends postback to BackNova with conversion status
2. BackNova processes it and updates your stats
3. BackNova forwards to your tracker URL with click_id
4. Your tracker updates campaign ROI automatically

⚠️ Important: Make sure to pass click_id when sending leads to BackNova. This is how we link conversions back to your tracker.

📚 API Documentation

Key endpoints for integrating BackNova with your systems.

POST /api/v1/decision

Main decision endpoint. Send lead data → receive quality score + routing decision.

{
  "source": "tiktok_us",
  "traffic_type": "push",
  "landing_page": "offer-page-1",
  "time_on_site": 45,
  "page_views": 3,
  "form_data": { ... }  // Will be hashed immediately
}
GET /api/v1/usage

Check your current API usage and remaining quota.

Response: { "used": 377, "total_limit": 25000, "remaining": 24623 }
GET /api/v1/events/recent

Get the last 50 decision events with AI reasoning (no PII — only hashed references and behavioral data).

🔄 How It All Works Together

1. Tracker → Landing: ?click_id=abc123&sub1=...
2. User submits form → BackNova SDK captures lead + click_id
3. BackNova validates → lead is processed and routed
4. Routes to PP → name, email, phone, click_id
5. PP processes lead → approved / rejected / pending
6. PP sends postback → BackNova updates stats by click_id
7. BackNova forwards → postback to your tracker with click_id
📖 Full Documentation
For complete API documentation including all endpoints, authentication, rate limits, and code examples, visit backnova.xyz/docs