getInstruments
Retrieve information about available cryptocurrency trading pairs and instruments.
Parameters
Number of records to return (pagination)
Filter conditions for instruments
Trading pair symbol (e.g., “BTCUSDT”)
Base currency (e.g., “BTC”)
Quote currency (e.g., “USDT”)
Filter by exchange: Binance, Coinbase, Kraken, DexScreener
Response
Paginated connection of instrument records
Unique instrument identifier
Display name of the instrument
Detailed description of the instrument
Base cryptocurrency (e.g., “BTC”, “ETH”)
Quote currency (e.g., “USDT”, “USD”)
Examples
query GetInstruments {
instruments(first: 50) {
nodes {
id
symbol
name
baseAsset
quoteAsset
}
pageInfo {
hasNextPage
endCursor
}
totalCount
}
}
getInstrumentPrices
Retrieve real-time price data for trading instruments.
Parameters
Number of records to return (pagination)
where
InstrumentPriceFilterInput
Filter conditions for instrument prices
Sort order for results. Can sort by: symbol, price, volume, quantity, timestamp, exchange
Response
instrumentPrices
Connection<InstrumentPrice>
Paginated connection of real-time price recordsShow InstrumentPrice fields
Exchange providing the price data
Examples
query GetLatestPrices {
instrumentPrices(first: 20, order: { timestamp: DESC }) {
nodes {
symbol
price
volume
timestamp
exchange {
name
}
}
}
}