https://api.snaptrade.com/api/v1/accounts/{accountId}/trading/instruments/cryptocurrencyPairs
Searches cryptocurrency pairs instruments accessible to the specified account. Both base and quote are optional. Omit both for a full list of cryptocurrency pairs.
base
quote
accountId
string (format: uuid)
required
Unique identifier for the connected brokerage account. This is the UUID used to reference the account in SnapTrade.
userId
string
SnapTrade User ID. This is chosen by the API partner and can be any string that is a) unique to the user, and b) immutable for the user. It is recommended to NOT use email addresses for this property because they are usually not immutable.
userSecret
SnapTrade User Secret. This is a randomly generated string and should be stored securely. If compromised, please rotate it via the rotate user secret endpoint.
The base currency of a pair (e.g., "BTC" in BTC/USD). Either fiat or cryptocurrency symbol, for fiat use ISO-4217 codes.
The quote currency of a pair (e.g., "USD" in BTC/USD). Either fiat or cryptocurrency symbol, for fiat use ISO-4217 codes.
1Loading...
object
The instruments
items
array of objects
symbol
Cryptocurrency pair instrument symbol
1{2 "items": [3 {4 "symbol": "BTC-USD",5 "base": "BTC",6 "quote": "USD"7 }8 ]9}