# SyndicateLinks Affiliate Link Generator

> SyndicateLinks Affiliate Link Generator is a paid API for AI agents from api.syndicatelinks.co, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Generates a trackable affiliate tracking link for a given destination URL, charging $0.01 USDC per link created

## Facts

- Endpoint: POST https://api.syndicatelinks.co/affiliate/links
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/api-syndicatelinks-co-2f87649b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_M-L0LqsOiSVsdgK2-m73v

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability api-syndicatelinks-co-2f87649b -d '<json body>'
```

Example prompt: Generate an affiliate tracking link for https://shop.example.com/product/widget-pro so I can share it in my newsletter and track conversions.

## When to prefer this

Use this endpoint when you need to programmatically create affiliate tracking links at low cost ($0.01 USDC per link) in an automated or agentic workflow, especially when integrating with the x402 payment protocol for per-call micropayments. Prefer this over manual affiliate dashboards when building pipelines that generate many links dynamically.

## Known failure modes

- Invalid or malformed destination URL returns an error response
- Payment failure or insufficient USDC balance prevents link creation
- Rate limiting if too many links are generated in a short period
- Destination URL domain may be unsupported or blocklisted

## How this service works

Generate an affiliate tracking link — pay $0.01 USDC per link

## Output

Returns a generated affiliate tracking link (URL) that includes tracking parameters, enabling attribution of clicks and conversions back to the affiliate source. Costs $0.01 USDC per link generated.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "properties": {}
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "url": "https://affiliate.syndicatelinks.co/go/abc123"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/api-syndicatelinks-co-2f87649b/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.syndicatelinks.co](https://www.zero.xyz/host/api.syndicatelinks.co/llms.txt)
