Builder API Documentation

Build on SimTrade and earn revenue share

Easy Integration

Simple REST API to register strategies and track attribution

Revenue Sharing

Earn 0.05% of trading volume generated by your strategies

Secure & Reliable

Enterprise-grade API with rate limiting and authentication

Getting Started

1 Register as a Builder

Create your builder profile to get a unique builder code

POST /api/builders/register

{
  "builder_code": "quantX",
  "display_name": "QuantX Trading",
  "description": "Advanced quant strategies",
  "website_url": "https://quantx.io"
}

2 Create a Strategy

Register your trading strategy or AI agent

POST /api/builders/strategies/create

{
  "strategy_name": "Momentum Scalper v2",
  "strategy_type": "agent",
  "description": "High-frequency momentum trading bot",
  "is_public": true,
  "price_per_use": 5
}

3 Track Attribution

Include your builder code in API calls to earn credit

POST /api/paper-trading/execute
Headers:
  x-builder-code: quantX

{
  "strategy_id": "uuid",
  "builder_code": "quantX",
  "symbol": "BTC-USD",
  "side": "buy",
  "size": 1000
}