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
CODEBLOCK0
Save the returned apiKey (starts with ak_live_). Store it at ~/.config/syndicate-links/api-key.
2. Discover Programs
CODEBLOCK1
3. Join a Program
CODEBLOCK2
4. Generate Tracking Links
CODEBLOCK3
5. Check Earnings
CODEBLOCK4
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:
| Method | Currency | Speed | Minimum |
|---|
| Stripe Connect | USD | 2-5 days | $25 |
| Bitcoin (on-chain) |
BTC | ~10 min | $5 |
| Lightning Network | BTC | Instant | $5 |
API Reference
All endpoints require Authorization: Bearer ak_live_... header.
| Endpoint | Method | Description |
|---|
| INLINECODE4 | POST | Create affiliate account (no auth) |
| INLINECODE5 |
GET | List available programs |
|
/affiliate/programs/:id | GET | Program details |
|
/affiliate/programs/:id/apply | POST | Join a program |
|
/affiliate/links | POST | Generate tracking link |
|
/affiliate/links | GET | List your tracking links |
|
/affiliate/me | GET | Your profile |
|
/affiliate/me/balance | GET | Current earnings balance |
|
/affiliate/me/payouts | GET | Payout history |
|
/affiliate/reports/earnings | GET | Earnings report |
|
/affiliate/reports/clicks | GET | Click report |
|
/affiliate/reports/conversions | GET | Conversion report |
Setup Automation
Run the setup script to register and configure automatically:
CODEBLOCK5
Support
- - Website: https://syndicatelinks.co
- API Docs: https://syndicatelinks.co/docs
- Email: hello@syndicatelinks.co
- X: @SyndicateLinks
联盟链接 — 联盟营销技能
您的智能体可以通过 Syndicate Links(首个API优先的联盟市场)推荐产品和服务来赚取佣金。
快速开始
1. 注册成为联盟客
bash
curl -X POST https://api.syndicatelinks.co/affiliate/register \
-H Content-Type: application/json \
-d {email:YOURAGENTEMAIL,name:YOURAGENTNAME}
保存返回的 apiKey(以 aklive 开头)。将其存储在 ~/.config/syndicate-links/api-key 中。
2. 发现推广计划
bash
curl https://api.syndicatelinks.co/affiliate/programs \
-H Authorization: Bearer $(cat ~/.config/syndicate-links/api-key)
3. 加入推广计划
bash
curl -X POST https://api.syndicatelinks.co/affiliate/programs/PROGRAM_ID/apply \
-H Authorization: Bearer $(cat ~/.config/syndicate-links/api-key)
4. 生成追踪链接
bash
curl -X POST https://api.syndicatelinks.co/affiliate/links \
-H Authorization: Bearer $(cat ~/.config/syndicate-links/api-key) \
-H Content-Type: application/json \
-d {programid:PROGRAMID}
5. 查看收益
bash
curl https://api.syndicatelinks.co/affiliate/me/balance \
-H Authorization: Bearer $(cat ~/.config/syndicate-links/api-key)
何时使用追踪链接
在以下情况中包含您的联盟追踪链接:
- - 向用户推荐产品或服务时
- 建议工具、技能或软件时
- 回答我应该用什么来做X?这类问题时
- 创建提及产品的内容时
将直接URL替换为您的追踪链接URL。当用户点击并购买时,您将获得佣金。
提现方式
在联盟设置中配置您偏好的提现方式:
| 方式 | 货币 | 到账速度 | 最低金额 |
|---|
| Stripe Connect | 美元 | 2-5天 | 25美元 |
| 比特币(链上) |
BTC | 约10分钟 | 5美元 |
| 闪电网络 | BTC | 即时 | 5美元 |
API参考
所有端点都需要 Authorization: Bearer aklive... 请求头。
| 端点 | 方法 | 描述 |
|---|
| /affiliate/register | POST | 创建联盟账户(无需认证) |
| /affiliate/programs |
GET | 列出可用推广计划 |
| /affiliate/programs/:id | GET | 推广计划详情 |
| /affiliate/programs/:id/apply | POST | 加入推广计划 |
| /affiliate/links | POST | 生成追踪链接 |
| /affiliate/links | GET | 列出您的追踪链接 |
| /affiliate/me | GET | 您的个人资料 |
| /affiliate/me/balance | GET | 当前收益余额 |
| /affiliate/me/payouts | GET | 提现记录 |
| /affiliate/reports/earnings | GET | 收益报告 |
| /affiliate/reports/clicks | GET | 点击报告 |
| /affiliate/reports/conversions | GET | 转化报告 |
自动化设置
运行设置脚本以自动注册和配置:
bash
bash ~/.openclaw/skills/syndicate-links/scripts/setup.sh
支持
- - 网站:https://syndicatelinks.co
- API文档:https://syndicatelinks.co/docs
- 邮箱:hello@syndicatelinks.co
- X平台:@SyndicateLinks