{% extends "public/base.html" %}
{% block title %}{{ t('landing.page_title') if t else 'AgenticTrade — The API Marketplace Where Agents Pay, Not Humans' }}{% endblock %}
{% block meta_description %}{{ t('landing.meta_desc') if t else 'AgenticTrade is an API marketplace built for AI agents. Providers list APIs and earn automatically. Builders integrate any API in minutes — agents handle discovery, auth, and billing.' }}{% endblock %}
{% block og_title %}{{ t('landing.page_title') if t else 'AgenticTrade — The API Marketplace Where Agents Pay, Not Humans' }}{% endblock %}
{% block og_description %}{{ t('landing.meta_desc') if t else 'List your API and let AI agents worldwide discover, call, and pay you automatically. Or build agents that pay their own bills.' }}{% endblock %}
{% block tw_title %}AgenticTrade — The API Marketplace Where Agents Pay, Not Humans{% endblock %}
{% block tw_description %}List your API and let AI agents worldwide discover, call, and pay you automatically. Or build agents that pay their own bills.{% endblock %}
{% block json_ld %}
{% endblock %}
{% block extra_css %}
{% endblock %}
{% block content %}
{# ══════════════════════════════════════════════════
Section 1: Hero
══════════════════════════════════════════════════ #}
{{ t('hero.provider_label') if t else 'Provider:' }} {{ t('hero.provider_desc') if t else 'list your API once, let AI agents worldwide discover, call, and pay you automatically.' }}{{ t('hero.title_pre') if t else 'The' }} {{ t('hero.title_highlight') if t else 'API Marketplace' }} {{ t('hero.title_post') if t else 'Where Agents Pay, Not Humans' }}
{{ t('hero.builder_label') if t else 'Builder:' }} {{ t('hero.builder_desc') if t else 'integrate any API in minutes — agents handle discovery, auth, and billing.' }}
{{ t('audience.provider_desc1') if t else 'Most API marketplaces are built for human developers. You write docs, maintain integration guides, answer the same questions over email. AgenticTrade is different.' }}
{{ t('audience.provider_desc2') if t else 'Your API gets a machine-readable MCP Tool Descriptor — agents discover it, understand what it does, call it with the right parameters, and pay you in USDC automatically. No human in the loop.' }}
{{ t('audience.builder_desc1') if t else 'When you embed an API into an AI agent, you bet on four things holding true:' }}
{{ t('audience.builder_desc2') if t else 'AgenticTrade eliminates all four failure modes.' }}
{{ t('section.three_steps_sub') if t else 'From registration to your first autonomous payment.' }}
{{ t('steps.p_step1_desc') if t else 'Paste your OpenAPI spec or define it manually. An MCP Tool Descriptor is generated automatically.' }}
{{ t('steps.p_step2_desc') if t else 'Per-call, tiered, or freemium. Agents read your pricing before calling — no surprises for either side.' }}
{{ t('steps.p_step3_desc') if t else 'Payments settle in USDC, USDT, or fiat. No invoices, no billing support tickets. Just revenue.' }}
{{ t('steps.b_step1_desc') if t else 'Browse the MCP registry or let your agent query it programmatically. Filter by capability, price, or category.' }}
{{ t('steps.b_step2_desc') if t else 'Proxy Key + MCP Descriptor = your agent understands the API. One integration covers all providers.' }}
{{ t('steps.b_step3_desc') if t else "Agent calls, agent pays. You top up the wallet. That's it. Per-call micropayments, no subscriptions." }}
{{ t('section.commission_sub') if t else "Keep more of what you earn. AgenticTrade's commission starts at 0% and caps at 10%." }}
| {{ t('commission.feature') if t else 'Feature' }} | AgenticTrade | RapidAPI |
|---|---|---|
| {{ t('commission.month1') if t else 'Month 1 commission' }} | 0% | 0% |
| {{ t('commission.month2_6') if t else 'Months 2–6 commission' }} | 5% | 25% |
| {{ t('commission.month7') if t else 'Month 7+ commission' }} | 10% | 25% |
| {{ t('commission.agent_payments') if t else 'Agent-to-agent payments' }} | {{ t('commission.yes') if t else 'Yes' }} | {{ t('commission.no') if t else 'No' }} |
| {{ t('commission.mcp_descriptors') if t else 'MCP Tool Descriptors' }} | {{ t('commission.yes') if t else 'Yes' }} | {{ t('commission.no') if t else 'No' }} |
| {{ t('commission.proxy_key') if t else 'Proxy Key protection' }} | {{ t('commission.yes') if t else 'Yes' }} | {{ t('commission.no') if t else 'No' }} |
| {{ t('commission.usdc_settlement') if t else 'USDC/USDT settlement' }} | {{ t('commission.yes') if t else 'Yes' }} | {{ t('commission.no') if t else 'No' }} |
{{ t('commission.at_calc_note') if t else 'Your take-home on AgenticTrade (10% commission after month 6)' }}
{{ t('commission.comp_calc_note') if t else 'Your take-home on RapidAPI (25% commission, forever)' }}
{{ t('integration.desc') if t else 'Call any marketplace service with a single HTTP request. Three languages, real response headers.' }}
import httpx
client = httpx.Client()
resp = client.post(
"https://agentictrade.io/api/v1/proxy/{service_id}/api/scan",
headers={"Authorization": f"Bearer {key_id}:{secret}"},
json={"indicators": ["rsi", "macd"]},
)
# Billing is automatic — check response headers
print(resp.headers["X-ACF-Amount"]) # "0.50"
print(resp.headers["X-ACF-Free-Tier"]) # "false"
print(resp.json()) # Service response body
# Call a service through the marketplace proxy
curl -X POST \
"https://agentictrade.io/api/v1/proxy/{service_id}/api/scan" \
-H "Authorization: Bearer {key_id}:{secret}" \
-H "Content-Type: application/json" \
-d '{"indicators": ["rsi", "macd"]}'
# Response headers include billing info:
# X-ACF-Amount: 0.50
# X-ACF-Free-Tier: false
# X-ACF-Usage-Id: rec_abc123
const resp = await fetch(
`https://agentictrade.io/api/v1/proxy/${serviceId}/api/scan`,
{
method: "POST",
headers: {
"Authorization": `Bearer ${keyId}:${secret}`,
"Content-Type": "application/json",
},
body: JSON.stringify({ indicators: ["rsi", "macd"] }),
}
);
// Billing info in response headers
console.log(resp.headers.get("X-ACF-Amount")); // "0.50"
console.log(resp.headers.get("X-ACF-Free-Tier")); // "false"
const data = await resp.json();
{{ t('cta.final_desc') if t else 'AgenticTrade is the API marketplace built for AI agents — not the humans who deploy them. List your API and earn from agents worldwide. Or build your agent to pay its own bills.' }}