Base URLhttps://developers.cuelinks.com/pub_api/v3
JSON responses. Token auth on every request. Authentication →
What you can build
Use caseHow
Cashback & rewards app Search campaigns, convert product URLs into affiliate links, track transactions, and pay users from your commission.
AI shopping agent Give your LLM access to campaigns, link conversion, and earnings via MCP. The agent finds deals, monetizes recommendations, and reports back.
Coupon & deals site Pull live offers and coupons, auto-generate affiliate links, and monitor which campaigns convert.
Automated reporting Sync daily performance, campaign breakdown, and earnings into your own dashboards or spreadsheets.
Telegram / WhatsApp bot Convert shared links on the fly, create channels programmatically, and track per-channel performance.
The platform
CapabilityScopeDescription
Campaigns read:campaigns Search, filter, and browse 10,000+ campaigns with real-time EPC data. Request access to private campaigns.
Link conversion write:links Convert any merchant URL into a trackable affiliate link. Optional short URLs via clnk.in.
Offers & coupons read:offers Browse live coupons and deals across all campaigns.
Channels read/write:channels Create and manage publisher channels. Attribute traffic per channel.
Transactions read:transactions Real-time conversions, commissions, and payout status with incremental sync.
Reports read:reports Performance by date, by campaign, monthly earnings, and unmonetized traffic analysis.
Invoices read:invoices View invoices with full tax breakdown and linked transactions for reconciliation.
Missing transactions read/write:missing_transactions File, track, and manage missing transaction claims programmatically.
Quick Start — from zero to commission

1. Get an API key from your publisher dashboard. Select read:campaigns and write:links scopes.

2. Find a campaign — search by name or browse by category.

3. Convert a URL — pass any merchant URL and get back a trackable affiliate link. Share it, embed it, or pass it to your users.

4. Track earnings — pull transactions in real time or aggregate with performance reports.

🤖
MCP-ready
Every endpoint works as an MCP tool. Connect your AI agent to the Cuelinks API and let it discover campaigns, generate links, and pull reports autonomously.

See Authentication for full key setup, or jump straight to API Reference.

Step 2 — Find a campaign
curl https://developers.cuelinks.com/pub_api/v3/campaigns \
  -H "Authorization: Token YOUR_API_KEY" \
  -G -d "q=flipkart"
Step 3 — Convert a URL
curl -X POST https://developers.cuelinks.com/pub_api/v3/links/convert \
  -H "Authorization: Token YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"url":"https://www.flipkart.com/iphone"}'
Step 4 — Track earnings
curl https://developers.cuelinks.com/pub_api/v3/reports/performance \
  -H "Authorization: Token YOUR_API_KEY"