Get Trading Pair Information
Crypto
Get Trading Pair Information
Feature Overview OpenAPI JSON Spec Get detailed info for a specified trading pair (configuration, exchange info, validity).
Parameter Description
| Parameter | Description | Example | Notes |
|---|---|---|---|
| base | Base currency symbol | BTC, ETH, BNB | Case-insensitive, but uppercase is recommended |
| quote | Quote currency symbol | USDT, BUSD, BTC | Common quote currencies include USDT, BUSD, etc. |
Response Data Explanation
| Field | Type | Description | Example |
|---|---|---|---|
| id | integer | Unique identifier of pair | 1 |
| symbol | string | Trading pair symbol | ”BTCUSDT” |
| base | string | Base currency | ”BTC” |
| quote | string | Quote currency | ”USDT” |
| exchange | string | Exchange name | ”binance” |
| isValid | boolean | Whether the pair is valid | true |
| Common Trading Pair Examples |
- Mainstream pairs to USD:
?base=BTC"e=USDT - Ethereum to USD:
?base=ETH"e=USDT - Altcoin to Bitcoin:
?base=ADA"e=BTC - Stablecoin pairs:
?base=USDT"e=BUSD - DeFi token pairs:
?base=UNI"e=ETH
Notes
- Both
baseandquoteparameters are required - Some pairs may be suspended (
isValid=falseduring periods)
GET
Get Trading Pair Information
Authorizations
API Key authentication. Example: "your-api-key-here"
Query Parameters
Base currency (e.g., BTC)
Quote currency (e.g., USDT)

