GraphQL API Reference

GraphQL API URL: https://graphql.redoubt.online/v1/graphql.

To use GraphQL one need to provide API key as described in Authorization section.

You could use GraphQL Explorer, which provides actual list of data sources available and has autocompletion capabilities.

Our GraphQL API allows you to make sophisticated queries to various data sources related to Jettons, NFTs, DEXes, and other data sources.

Here is an example of a simple query for the largest DEX pools:

query larges_pools {
  redoubt_dex_tvl_current(
    where: {platform: {_eq: "megaton"}},
    order_by: {tvl_ton: desc},
    limit: 10
  ) {
    address
    tvl_ton
    jetton_a
    jetton_b
    platform
  }
}

Response example:

Last updated