Get supported trading pairs for an account
Retrieve all asset trading pairs supported by a specific connected account, including the pair type (quote, market, onOffRamp).
Note: This endpoint is currently in beta and might be subject to changes.
GET
TypeScript
Path Parameters
The ID of the account to fetch supported pairs for.
Minimum string length:
1Query Parameters
Page size for pagination.
Required range:
1 <= x <= 100Page cursor for pagination.
Response
Supported pairs response
Example:
[
{
"id": "ea6c3cb7-355a-4ee3-82ff-267c69970210",
"baseAssetId": "BTC",
"quoteAssetId": "USD",
"supportedTypes": ["MARKET"]
},
{
"id": "ea6c3cb7-355a-4ee3-82ff-267c69970211",
"baseAssetId": "ETH",
"quoteAssetId": "USDC",
"supportedTypes": ["QUOTE", "MARKET"]
}
]Total number of asset pairs matching the query.
Example:
2
A cursor for the next page of results, if available.
Example:
null
Previous
Get allowlist for connected accountRetrieves the address allowlist for a specified connected account.
**Note:** This endpoint is currently in beta and might be subject to changes. Currently supports CoinbaseExchange accounts only.
Next
TypeScript