Skip to content

Crypto Exchanges

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.
Terminal window
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"
}
}'

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".
Terminal window
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"
}
}'

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.
Terminal window
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"
}
}'

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

ParameterTypeDescription
api_keystringCoinbase API key.
api_secretstringCoinbase API secret.
Terminal window
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"
}
}'

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

ParameterTypeDescription
api_keystringKraken API key.
private_keystringKraken private key (base64-encoded).
Terminal window
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"
}
}'

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

ParameterTypeDefaultDescription
client_idstringRequiredDeribit client ID.
client_secretstringRequiredDeribit client secret.
testnetstring"false""true" for testnet.
Terminal window
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"
}
}'

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

ParameterTypeDescription
api_keystringKuCoin API key.
api_secretstringKuCoin API secret.
passphrasestringKuCoin API passphrase.
Terminal window
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"
}
}'

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

ParameterTypeDescription
api_keystringGate.io API key.
api_secretstringGate.io API secret.
Terminal window
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"
}
}'

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

ParameterTypeDefaultDescription
api_keystringRequiredGemini API key.
api_secretstringRequiredGemini API secret.
sandboxstring"false""true" for sandbox.
Terminal window
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"
}
}'

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

ParameterTypeDescription
api_keystringBitfinex API key.
api_secretstringBitfinex API secret.
Terminal window
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"
}
}'

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.
Terminal window
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"
}
}'