Quick Start

Get up and running with the TokenBot API in minutes.

Prerequisites

  • A TokenBot account

  • An API key (create one in Settings → API Keys in your dashboard)

Step 1: Test Your API Key

curl https://rest-api.tokenbot.com/v1/health \
  -H "X-API-Key: tb_live_your_api_key"

Step 2: List Your Exchange Accounts

curl https://rest-api.tokenbot.com/v1/exchanges \
  -H "X-API-Key: tb_live_your_api_key"

Response:

{
  "success": true,
  "data": [
    {
      "id": "exc_abc123",
      "exchange_name": "binance",
      "account_name": "Main Binance",
      "trading_type": "spot",
      "is_active": true,
      "created_at": "2026-01-15T10:30:00Z"
    }
  ]
}

Step 3: List Your Strategies

Step 4: View Recent Trades

Step 5: Set Up Webhooks

Get real-time notifications when trades execute. See the Webhooks guide.

Next Steps

Last updated

Was this helpful?