๐Ÿ”— Affiliate Marketing

How Cuelinks Integration Works on LootBazaar

๐Ÿ›๏ธ
LootBazaar TeamOfficial LootBazaar Blog
Published: 8 June 2026ยทUpdated: 16 June 2026ยท8 min read
โš™๏ธ

Cuelinks is India's largest affiliate marketing platform. LootBazaar is built on top of Cuelinks as its affiliate network layer โ€” Cuelinks handles the relationship with stores like Amazon, Flipkart, and Myntra, and LootBazaar serves as the publisher interface.

LootBazaar calls the Cuelinks API endpoint: GET https://www.cuelinks.com/api/v2/links?url={productUrl}&subid={publisherUUID} with a Bearer token in the header.

Cuelinks returns a tracking URL that encodes both the store destination and the publisher's identity. When a user follows this URL, clicks a buy button, and completes a purchase, the sale is automatically attributed to the publisher.

Fallback Tracking System

If the Cuelinks API is unavailable, LootBazaar generates a fallback deep link: https://linksredirect.com/?pub_id=206482&source=linkkit&url={encodedUrl}&subid={publisherUUID}. This ensures publisher tracking is never lost even during API downtime.

The Postback System

When a purchase is completed, Cuelinks notifies LootBazaar by sending a POST request to: /api/postback/cuelinks. This is called a "postback" or "server-to-server callback".

The postback contains: a secret token for authentication, the transaction_id, the publisher's sub_id (UUID), the sale amount, the commission earned, and the current status.

โ„น๏ธ The postback is idempotent โ€” if Cuelinks sends the same transaction twice (e.g. when updating status from pending to confirmed), LootBazaar updates the existing record instead of creating a duplicate.

Security & Validation

  • ๐Ÿ” Secret token validation on every postback
  • โœ… UUID format check โ€” test/preview postbacks with fake sub_ids are acknowledged but not recorded
  • ๐Ÿ‘ค Publisher profile check โ€” suspended accounts receive no commission
  • ๐Ÿ“‹ Every postback (success or failure) is logged in the postback_logs table for auditing

See Your Commission Rates

Check the exact Cuelinks payout rates for every supported store.

View Rates โ†’

๐Ÿ™‹ Frequently Asked Questions

๐Ÿ“– Recommended Reading