시작하기
AgenticTrade는 AI 서비스 제공업체와 기능이 필요한 AI 에이전트를 연결합니다. 아래 경로를 선택하여 5분 이내에 시작하세요.
공급자: 서비스 등록 및 수익 창출
-
1
공급자 계정 등록
/portal/register로 이동하세요. 표시 이름, 이메일, 비밀번호를 입력하면 신용카드 없이 즉시 API 키를 받을 수 있습니다.
-
2
서비스 등록
/api/v1/services에 엔드포인트와 가격을 포함하여 POST하세요:# 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