v1

latestOpenAPI 3.0.42026-07-26432241.7 KB
SaucerSwap V2

Get detailed data for all SaucerSwap V2 pools

get/v2/pools/full

Headers

x-api-keystring required

API key for authentication. The demo api key provided is globally rate limited. Do not use in production.

Response

Successful response

idinteger required

Pool id

contractIdstring required

Contract id (shard.realm.num)

amountAstring required

Total amount for token A

amountBstring required

Total amount for token B

feeinteger required

Swap fee tier for the pool, denoted in basis points

sqrtRatioX96string required

Encoded square root of price ratio between tokens in the pool as a Q64.96 number

tickCurrentinteger required

Current active tick index, representing a specific price point in the pool

liquiditystring required

Total liquidity for the pool

Example response

[
  {
    "id": 1,
    "contractId": "0.0.3948521",
    "tokenA": {
      "id": "0.0.731861",
      "name": "SAUCE",
      "symbol": "SAUCE",
      "icon": "/images/tokens/sauce.svg",
      "decimals": 6,
      "price": "36806544",
      "priceUsd": 0.01763457,
      "dueDiligenceComplete": true,
      "description": "SaucerSwap is an open source and non-custodial AMM protocol native to Hedera.",
      "website": "https://www.saucerswap.finance/",
      "sentinelReport": "https://sentinel.headstarter.org/details/saucerswap",
      "twitterHandle": "SaucerSwapLabs"
    },
    "tokenB": {
      "id": "0.0.731861",
      "name": "SAUCE",
      "symbol": "SAUCE",
      "icon": "/images/tokens/sauce.svg",
      "decimals": 6,
      "price": "36806544",
      "priceUsd": 0.01763457,
      "dueDiligenceComplete": true,
      "description": "SaucerSwap is an open source and non-custodial AMM protocol native to Hedera.",
      "website": "https://www.saucerswap.finance/",
      "sentinelReport": "https://sentinel.headstarter.org/details/saucerswap",
      "twitterHandle": "SaucerSwapLabs"
    },
    "amountA": "6313040",
    "amountB": "6313042",
    "fee": 500,
    "sqrtRatioX96": "79228162514992909706099547250",
    "liquidity": "10878982596"
  }
]