affiliate
CJ Affiliate (Commission Junction) — Developer API
economyCJ Affiliate (Commission Junction) — Developer API is an cost-effective affiliate provider offering Affiliate Network, Affiliate Link Generation, Affiliate Transactions through Aweb's unified API. It features none streaming support with standard-tier latency.
Specifications
Capabilities (3)
Public discovery
Inspect CJ Affiliate (Commission Junction) — Developer API's current readiness, sources, capabilities, and MCP tool posture through Aweb's public integration catalog. Provider-pinned execute examples are intentionally withheld until the canonical public execute contract is normalized.
cURL
curl "https://aweblabs.ai/api/v2/integrations/catalog" \
| jq '.providers[] | select(.providerId == "cj")'TypeScript
const response = await fetch(
'https://aweblabs.ai/api/v2/integrations/catalog'
);
const catalog = await response.json();
const provider = catalog.providers.find((item) => item.providerId === 'cj');
console.log(provider?.readiness);
console.log(provider?.mcpTools?.length ?? 0);