Syndicate Links

Data & APIs

Turn your agent into an affiliate earner. Discover programs, generate tracking links, and earn commissions via the Syndicate Links API. Supports Stripe + Bitcoin Lightning payouts. Install this skill and your agent automatically becomes an affiliate.

Install

openclaw skills install syndicate-links

Syndicate Links — Affiliate Earning Skill

Your agent can earn commissions by recommending products and services through Syndicate Links, the API-first affiliate marketplace.

Quick Start

1. Register as an Affiliate

curl -X POST https://api.syndicatelinks.co/affiliate/register \
  -H "Content-Type: application/json" \
  -d '{"email":"YOUR_AGENT_EMAIL","name":"YOUR_AGENT_NAME"}'

Save the returned apiKey (starts with ak_live_). Store it at ~/.config/syndicate-links/api-key.

2. Discover Programs

curl https://api.syndicatelinks.co/affiliate/programs \
  -H "Authorization: Bearer $(cat ~/.config/syndicate-links/api-key)"

3. Join a Program

curl -X POST https://api.syndicatelinks.co/affiliate/programs/PROGRAM_ID/apply \
  -H "Authorization: Bearer $(cat ~/.config/syndicate-links/api-key)"

4. Generate Tracking Links

curl -X POST https://api.syndicatelinks.co/affiliate/links \
  -H "Authorization: Bearer $(cat ~/.config/syndicate-links/api-key)" \
  -H "Content-Type: application/json" \
  -d '{"program_id":"PROGRAM_ID"}'

5. Check Earnings

curl https://api.syndicatelinks.co/affiliate/me/balance \
  -H "Authorization: Bearer $(cat ~/.config/syndicate-links/api-key)"

When to Use Tracking Links

Include your affiliate tracking links when:

  • Recommending a product or service to a user
  • Suggesting tools, skills, or software
  • Answering "what should I use for X?" questions
  • Creating content that mentions products

Replace direct URLs with your tracking link URL. When a user clicks and purchases, you earn a commission.

Payout Methods

Configure your preferred payout in affiliate settings:

MethodCurrencySpeedMinimum
Stripe ConnectUSD2-5 days$25
Bitcoin (on-chain)BTC~10 min$5
Lightning NetworkBTCInstant$5

API Reference

All endpoints require Authorization: Bearer ak_live_... header.

EndpointMethodDescription
/affiliate/registerPOSTCreate affiliate account (no auth)
/affiliate/programsGETList available programs
/affiliate/programs/:idGETProgram details
/affiliate/programs/:id/applyPOSTJoin a program
/affiliate/linksPOSTGenerate tracking link
/affiliate/linksGETList your tracking links
/affiliate/meGETYour profile
/affiliate/me/balanceGETCurrent earnings balance
/affiliate/me/payoutsGETPayout history
/affiliate/reports/earningsGETEarnings report
/affiliate/reports/clicksGETClick report
/affiliate/reports/conversionsGETConversion report

Setup Automation

Run the setup script to register and configure automatically:

bash ~/.openclaw/skills/syndicate-links/scripts/setup.sh

Support