getExchanges
Retrieve information about supported cryptocurrency exchanges.
Parameters
Number of records to skip (offset pagination)
Number of records to return (default: 10)
Filter conditions for exchanges
Sort order for results. Can sort by: name, description
Response
exchanges
CollectionSegment<Exchange>
Paginated collection of exchange records
Unique exchange identifier
Exchange name (e.g., “Binance”, “Coinbase”, “Kraken”, “DexScreener”)
Description of the exchange
Whether more results are available
Whether previous results exist
Total number of exchanges
Supported Exchanges
PriceSignal currently supports the following exchanges:
- Binance - Global cryptocurrency exchange
- Coinbase - US-based cryptocurrency exchange
- Kraken - European cryptocurrency exchange
- DexScreener - Decentralized exchange aggregator
Examples
query GetExchanges {
exchanges {
items {
id
name
description
}
pageInfo {
hasNextPage
hasPreviousPage
}
totalCount
}
}
Usage with Other Queries
Exchange data is commonly used as a filter in other queries:
query GetBinancePrices {
prices(
interval: ONE_MIN
where: {
exchange: { name: { eq: "Binance" } }
}
) {
nodes {
symbol
close
exchange {
name
}
}
}
}