OpenFX provides a robust and secure API suite engineered for high performance and reliability, enabling programmatic access to real-time market data, trade execution, and money movement functionalities. This guide will walk through the step-by-step process of deposits, quoting, trading, settlements and monitoring using OpenFX APIs.
Overview of OpenFX APIs (v1.0.0)
Overview
Languages
Servers
OpenFX API Server
https://api.sandbox.openfx.com/
- OpenFX API Server
https://api.sandbox.openfx.com/v1/brokerage/{orgId}/available_markets
- curl
- JavaScript
- Node.js
- Python
- Java
- Go
- PHP
curl -i -X GET \
'https://api.sandbox.openfx.com/v1/brokerage/{orgId}/available_markets' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>'Response
application/json
{ "status": "success", "data": { "tradingPairs": [ { "buy": "USD", "sell": "USDC" }, { "buy": "USDC", "sell": "USD" } ], "tradeLimits": [ { "USD": { "minTradeLimit": 100, "maxTradeLimit": 100000000 } }, { "USDC": { "minTradeLimit": 100, "maxTradeLimit": 10000000 } } ] } }