# Get available markets Use this endpoint to: - Access the complete list of available currency pairs to trade - Retrieve specifications on trading limits and possible trade directions by currency Endpoint: GET /v1/brokerage/{orgId}/available_markets Version: v1.0.0 Security: bearerAuth ## Path parameters: - `orgId` (string, required) ## Response 200 fields (application/json): - `status` (string) Enum: "success", "error" - `data` (object,null) - `data.tradingPairs` (array) List of available trading pairs with their buy and sell currencies - `data.tradingPairs.buy` (string) Currency used to buy the asset (quote currency) Example: "USDC" - `data.tradingPairs.sell` (string) Currency being sold (base currency) Example: "USD" - `data.tradeLimits` (array) Trade limits for each trading pair, keyed by pair symbol (e.g., 'USDC/USD') - `message` (string) Example: "Data fetched successfully" ## Response 400 fields (application/json): - `status` (string) Example: "error" - `message` (string) Example: "Data fetched successfully" ## Response 401 fields (application/json): - `status` (string) Example: "error" - `message` (string) Example: "Data fetched successfully" ## Response 500 fields (application/json): - `status` (string) Example: "error" - `message` (string) Example: "Data fetched successfully"