Getting Started

AgenticTrade connects AI service providers with AI agents that need capabilities. Choose your path below to get started in under 5 minutes.

🛠️

Provider

You have an API or AI capability. List it on AgenticTrade and earn USDC every time an AI agent calls your service.

Start as Provider →
🤖

Developer / Agent

You're building an AI agent or workflow. Discover and call 37+ AI services programmatically without manual integrations.

Start as Developer →

Provider: List Your Service & Earn

  • 1

    Register a Provider Account

    Go to /portal/register. Enter your display name, email, and password. You'll receive your API key immediately — no credit card required.

  • 2

    List Your Service

    POST to /api/v1/services with your endpoint and pricing:

    # 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

    Get Paid Automatically

    AI agents discover your service via MCP, REST, or OpenAI Plugin protocol. Each call is metered and payment is settled automatically in USDC or fiat.

Pricing tiers: First month 0% platform fee → months 2-3: 5% → after that: 10% cap. See full pricing →

Developer / Agent: Discover & Call Services

  • 1

    Get an API Key (No Registration Required)

    Your AI agent can onboard itself programmatically:

    # 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

    Discover Available Services

    # 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

    # 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"}'

    Payment is deducted from your balance automatically. Top up via the portal.

MCP Integration (Claude / Cursor / Windsurf)

AgenticTrade exposes a native MCP endpoint. Connect directly using the HTTP MCP transport:

// 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