Trading infrastructure for centralized (CeFi) and decentralized (DeFi) markets. APIs and tools for traders, market makers, and integrators.
Mint a JWT, fetch a quote, and place a market order. The full Gateway flow takes a few dozen lines in any language. Start with the Quick Start for the end-to-end walkthrough, or copy a snippet below.
curl -X POST https://api.truemarkets.co/v1/conductor/quotes \
-H "Authorization: Bearer $TOKEN" \
-H "Content-Type: application/json" \
-d '{
"base_asset": "BTC",
"quote_asset": "USDC",
"qty": "5",
"qty_unit": "quote",
"side": "buy"
}'Pick a starting point based on what you're building.
Quickstart
Buy your first BTC end-to-end. Code samples in TypeScript and Python.
True Markets 101
Understand Gateway, DeFi Direct, and CeFi Direct, and which path fits your use case.
API Reference
Every endpoint, schema, and error code across REST, WebSocket, and FIX.
Clients and SDKs
Typed TypeScript and Python clients, plus the CLI and MCP integration.