SYSTEM R AI

Crypto Exchanges

Binance, Bybit, OKX, Coinbase, Kraken, Deribit, KuCoin, Gate.io, Gemini, Bitfinex, and Aster.

Binance

ID: binance | Markets: Spot, USDT-M futures | API: Official REST API

ParameterTypeDefaultDescription
api_keystringRequiredBinance API key.
api_secretstringRequiredBinance API secret.
testnetstring"false""true" for testnet.
futuresstring"false""true" for USDT-M futures.
curl -X POST https://agents.systemr.ai/v1/broker/connect \
  -H "X-API-Key: sr_agent_..." \
  -H "Content-Type: application/json" \
  -d '{
    "broker_type": "binance",
    "connection_params": {
      "api_key": "YOUR_API_KEY",
      "api_secret": "YOUR_API_SECRET",
      "testnet": "false",
      "futures": "false"
    }
  }'

Bybit

ID: bybit | Markets: Spot, USDT perps, inverse perps, options | API: V5 unified API

ParameterTypeDefaultDescription
api_keystringRequiredBybit API key.
api_secretstringRequiredBybit API secret.
testnetstring"false""true" for testnet.
categorystring"spot""spot", "linear" (USDT perps), "inverse", or "option".
curl -X POST https://agents.systemr.ai/v1/broker/connect \
  -H "X-API-Key: sr_agent_..." \
  -H "Content-Type: application/json" \
  -d '{
    "broker_type": "bybit",
    "connection_params": {
      "api_key": "YOUR_API_KEY",
      "api_secret": "YOUR_API_SECRET",
      "category": "linear"
    }
  }'

OKX

ID: okx | Markets: Spot, margin, swaps, futures, options | API: V5 API

ParameterTypeDefaultDescription
api_keystringRequiredOKX API key.
secret_keystringRequiredOKX secret key.
passphrasestringRequiredOKX API passphrase.
simulatedstring"false""true" for simulated trading.
curl -X POST https://agents.systemr.ai/v1/broker/connect \
  -H "X-API-Key: sr_agent_..." \
  -H "Content-Type: application/json" \
  -d '{
    "broker_type": "okx",
    "connection_params": {
      "api_key": "YOUR_API_KEY",
      "secret_key": "YOUR_SECRET_KEY",
      "passphrase": "YOUR_PASSPHRASE"
    }
  }'

Coinbase

ID: coinbase | Markets: Spot | API: Coinbase Advanced Trade API

ParameterTypeDescription
api_keystringCoinbase API key.
api_secretstringCoinbase API secret.
curl -X POST https://agents.systemr.ai/v1/broker/connect \
  -H "X-API-Key: sr_agent_..." \
  -H "Content-Type: application/json" \
  -d '{
    "broker_type": "coinbase",
    "connection_params": {
      "api_key": "YOUR_API_KEY",
      "api_secret": "YOUR_API_SECRET"
    }
  }'

Kraken

ID: kraken | Markets: Spot, margin | API: Official REST API

ParameterTypeDescription
api_keystringKraken API key.
private_keystringKraken private key (base64-encoded).
curl -X POST https://agents.systemr.ai/v1/broker/connect \
  -H "X-API-Key: sr_agent_..." \
  -H "Content-Type: application/json" \
  -d '{
    "broker_type": "kraken",
    "connection_params": {
      "api_key": "YOUR_API_KEY",
      "private_key": "YOUR_PRIVATE_KEY"
    }
  }'

Deribit

ID: deribit | Markets: Crypto options, futures | API: Official API

ParameterTypeDefaultDescription
client_idstringRequiredDeribit client ID.
client_secretstringRequiredDeribit client secret.
testnetstring"false""true" for testnet.
curl -X POST https://agents.systemr.ai/v1/broker/connect \
  -H "X-API-Key: sr_agent_..." \
  -H "Content-Type: application/json" \
  -d '{
    "broker_type": "deribit",
    "connection_params": {
      "client_id": "YOUR_CLIENT_ID",
      "client_secret": "YOUR_CLIENT_SECRET",
      "testnet": "false"
    }
  }'

KuCoin

ID: kucoin | Markets: Spot, margin, futures | API: Official API

ParameterTypeDescription
api_keystringKuCoin API key.
api_secretstringKuCoin API secret.
passphrasestringKuCoin API passphrase.
curl -X POST https://agents.systemr.ai/v1/broker/connect \
  -H "X-API-Key: sr_agent_..." \
  -H "Content-Type: application/json" \
  -d '{
    "broker_type": "kucoin",
    "connection_params": {
      "api_key": "YOUR_API_KEY",
      "api_secret": "YOUR_API_SECRET",
      "passphrase": "YOUR_PASSPHRASE"
    }
  }'

Gate.io

ID: gateio | Markets: Spot, margin, futures, options | API: V4 API

ParameterTypeDescription
api_keystringGate.io API key.
api_secretstringGate.io API secret.
curl -X POST https://agents.systemr.ai/v1/broker/connect \
  -H "X-API-Key: sr_agent_..." \
  -H "Content-Type: application/json" \
  -d '{
    "broker_type": "gateio",
    "connection_params": {
      "api_key": "YOUR_API_KEY",
      "api_secret": "YOUR_API_SECRET"
    }
  }'

Gemini

ID: gemini | Markets: Spot (US regulated) | API: Official API

ParameterTypeDefaultDescription
api_keystringRequiredGemini API key.
api_secretstringRequiredGemini API secret.
sandboxstring"false""true" for sandbox.
curl -X POST https://agents.systemr.ai/v1/broker/connect \
  -H "X-API-Key: sr_agent_..." \
  -H "Content-Type: application/json" \
  -d '{
    "broker_type": "gemini",
    "connection_params": {
      "api_key": "YOUR_API_KEY",
      "api_secret": "YOUR_API_SECRET",
      "sandbox": "false"
    }
  }'

Bitfinex

ID: bitfinex | Markets: Spot, margin, derivatives | API: V2 API

ParameterTypeDescription
api_keystringBitfinex API key.
api_secretstringBitfinex API secret.
curl -X POST https://agents.systemr.ai/v1/broker/connect \
  -H "X-API-Key: sr_agent_..." \
  -H "Content-Type: application/json" \
  -d '{
    "broker_type": "bitfinex",
    "connection_params": {
      "api_key": "YOUR_API_KEY",
      "api_secret": "YOUR_API_SECRET"
    }
  }'

Aster

ID: aster | Markets: Perpetuals | API: Binance-compatible REST API

Aster DEX is backed by YZi Labs (CZ). Uses a Binance-compatible API interface.

ParameterTypeDescription
api_keystringAster API key.
api_secretstringAster API secret.
curl -X POST https://agents.systemr.ai/v1/broker/connect \
  -H "X-API-Key: sr_agent_..." \
  -H "Content-Type: application/json" \
  -d '{
    "broker_type": "aster",
    "connection_params": {
      "api_key": "YOUR_API_KEY",
      "api_secret": "YOUR_API_SECRET"
    }
  }'
System R AI
Python SDKpip install systemr
MCP Serveragents.systemr.ai/mcp/sse
OpenAPI Specagents.systemr.ai/openapi.json
Machine Docsagents.systemr.ai/llms.txt
GitHubSystem-R-AI
X@Systemrai
YouTube@systemr_ai
Emailhello@systemr.ai
Phone628 333 6693
Address7901 4TH ST N, STE 28529, ST PETERSBURG, FL 33702
TermsTerms of Service
PrivacyPrivacy Policy
SecuritySecurity Policy
© 2026 System R AI. Software platform. Not financial advice.

On this page