Skip to main content
API Trading · Live

CoinSwitch API Trading

Programmatic access to spot, perpetual futures, high-frequency, and options trading on CoinSwitch PRO. One signature scheme, multiple exchanges, four independent API surfaces.

4API surfaces
Ed25519Signature
MultipleExchanges
Up to 100×HFT leverage

Six lines to your first order

Drop a single-file client into your project and call methods directly — no need to build your own SDK. Every Spot, Futures, and HFT endpoint is wrapped, in Python, Java, Go, and Node.js.

# Place a spot order using the Spot recipe
from coinswitch_spot import SpotClient

cs = SpotClient(api_key="<api key>", secret_key="<secret>")
print(cs.create_order(
side="buy", symbol="BTC/USDT", type="limit",
price=60000, quantity=0.001, exchange="c2c1",
))