List of endpoints
| Functionality | Endpoint Type | |
|---|---|---|
| OHLCV Tokens Stream | subscription | subscription { ohlcvCandlesForToken { ... } } |
| OHLCV Pairs Stream | subscription | subscription { ohlcvCandlesForPair { ... } } |
| New DEX Pairs Stream | subscription | subscription { newPairs { ... } } |
| Update Pairs Stream | subscription | subscription { updatePairs { ... } } |
| Wallet Activity Stream | subscription | subscription { walletTxs { ... } } |
| Update Tokens Stream | subscription | subscription { updateTokens { ... } } |
| Token Search Query | query | query { searchToken { ... } } |
| Top Trader Wallets for Token Query | query | query { upnlForToken { ... } } |
| Wallet PnL by Token Query | query | query { upnlForWallet { ... } } |
| OHLCV Tokens Query | query | query { ohlcvCandlesForToken { ... } } |
| OHLCV Pairs Query | query | query { ohlcvCandlesForPair { ... } } |
Fetching the schema
query IntrospectionQuery {
__schema {
queryType {
name
}
mutationType {
name
}
subscriptionType {
name
}
types {
...FullType
}
directives {
name
description
locations
args {
...InputValue
}
}
}
}
fragment FullType on __Type {
kind
name
description
fields(includeDeprecated: true) {
name
description
args {
...InputValue
}
type {
...TypeRef
}
isDeprecated
deprecationReason
}
inputFields {
...InputValue
}
interfaces {
...TypeRef
}
enumValues(includeDeprecated: true) {
name
description
isDeprecated
deprecationReason
}
possibleTypes {
...TypeRef
}
}
fragment InputValue on __InputValue {
name
description
type {
...TypeRef
}
defaultValue
}
fragment TypeRef on __Type {
kind
name
ofType {
kind
name
ofType {
kind
name
ofType {
kind
name
ofType {
kind
name
ofType {
kind
name
ofType {
kind
name
ofType {
kind
name
ofType {
kind
name
ofType {
kind
name
}
}
}
}
}
}
}
}
}
}