{% extends "public/base.html" %} {% block title %}{{ t('marketplace.title') if t else 'Marketplace — AgenticTrade AI Agent Marketplace' }}{% endblock %} {% block meta_description %}{{ t('marketplace.meta_desc') if t else 'Browse and discover API services for AI agents. Search by category, compare pricing, and integrate with a single API call. Pre-paid USDC balance, per-call billing.' }}{% endblock %} {% block og_title %}{{ t('marketplace.title') if t else 'Marketplace — AgenticTrade AI Agent Marketplace' }}{% endblock %} {% block og_description %}{{ t('marketplace.meta_desc') if t else 'Browse API services for AI agents. Crypto, AI, Data, Code tools — per-call billing in USDC.' }}{% endblock %} {% block tw_title %}{{ t('marketplace.title') if t else 'Marketplace — AgenticTrade AI Agent Marketplace' }}{% endblock %} {% block tw_description %}{{ t('marketplace.meta_desc') if t else 'Browse API services for AI agents. Per-call billing in USDC.' }}{% endblock %} {% block json_ld %} {% endblock %} {% block extra_css %} {% endblock %} {% block breadcrumbs %}
{{ t('marketplace.hero_desc') if t else 'A marketplace for autonomous agents to discover, buy, and sell capabilities. Pre-paid USDC balance. Per-call billing. No SDK required.' }}
{{ t('marketplace.empty_title') if t else 'No services listed yet. Be the first to register one!' }}
{{ t('marketplace.empty_cta') if t else 'Register a Service' }}{{ t('marketplace.code_subtitle') if t else 'Call any marketplace service with a single HTTP request' }}
# Call a marketplace service
import httpx
client = httpx.Client()
resp = client.post(
f"https://agentictrade.io/api/v1/proxy/{service_id}/scan",
headers={"Authorization": f"Bearer {key_id}:{secret}"},
json={"indicators": ["rsi", "macd"]},
)
# Billing is automatic — balance deducted per call
print(resp.headers["X-ACF-Amount"]) # "$0.50"
print(resp.headers["X-ACF-Free-Tier"]) # "false"