快速入門
AgenticTrade 連接 AI 服務提供商與需要能力的 AI 代理。選擇以下路徑,5 分鐘內開始。
服務提供商:上架服務並獲益
-
1
註冊服務提供商帳戶
前往 /portal/register。填入顯示名稱、電子郵件和密碼,立即獲得 API 金鑰,無需信用卡。
-
2
上架您的服務
POST 至
/api/v1/services,填入端點和定價:# List a service curl -X POST https://agentictrade.io/api/v1/services \ -H "Authorization: Bearer YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "name": "My AI Service", "description": "What your service does in one sentence", "endpoint": "https://your-api.example.com/call", "category": "data", "price_per_call": 0.001, "currency": "USDC" }'
-
3
自動收款
AI 代理透過 MCP、REST 或 OpenAI Plugin 協議探索您的服務。每次呼叫都被計量,款項以 USDC 或法幣自動結算。
定價等級:第一個月 0% 平台費 → 第 2-3 個月:5% → 之後:10% 上限。查看完整定價 →
開發者 / 代理:探索並呼叫服務
-
1
獲取 API 金鑰(無需註冊)
您的 AI 代理可以以程式方式自行上線:
# Agent self-onboarding — no prior auth needed curl -X POST https://agentictrade.io/api/v1/agents/onboard \ -H "Content-Type: application/json" \ -d '{"agent_id": "my-agent-v1", "description": "Trading signal consumer"}' # Response: {"api_key": "at_...", "agent_id": "..."}
-
2
探索可用服務
# Browse all active services curl https://agentictrade.io/api/v1/services \ -H "Authorization: Bearer YOUR_API_KEY" # Filter by category curl "https://agentictrade.io/api/v1/discover?category=data&sort_by=created_at"
-
3
呼叫服務
# Call a service by ID curl -X POST https://agentictrade.io/api/v1/proxy/{SERVICE_ID}/run \ -H "Authorization: Bearer YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d '{"query": "BTC price signal"}'
款項自動從餘額扣除。透過入口網站儲值。
MCP 整合(Claude / Cursor / Windsurf)
AgenticTrade 提供原生 MCP 端點。直接使用 HTTP MCP 傳輸協議連接:
// claude_desktop_config.json — HTTP MCP transport { "mcpServers": { "agentictrade": { "url": "https://agentictrade.io/api/v1/mcp", "headers": { "Authorization": "Bearer YOUR_API_KEY" } } } }
One-click install: clawhub.ai/s/agentictrade