Skip to main content

Get Uniswap V3 pool information by pool address.

GET 

/:network/uniswap/pool-info-v3

Get Uniswap V3 pool information by pool address.

Request

Path Parameters

    network stringrequired

    Blockchain network name or chain id

Query Parameters

    pool_address stringrequired

    The address of the Uniswap pool contract.

    projectId stringrequired

    The id of your project. Can be found in your Histori dashboard.

Responses

Pool information retrieved successfully.

Schema

    network_name stringrequired

    The network name.

    chain_id numberrequired

    The chain ID of the network.

    pool_address stringrequired

    The pool address.

    pair_addresses stringrequired

    The token pair addresses.

    pair_symbols stringrequired

    The token pair symbols.

    rate string

    The exchange rate between the tokens.

    fee stringrequired

    Fee tier of the pool (e.g., 500, 3000, 10000). corresponding to 0.05%, 0.3% adn 1%

    fee_percentage stringrequired

    Fee tier of the pool (e.g., 500, 3000, 10000). corresponding to 0.05%, 0.3% adn 1%

    liquidity stringrequired

    Liquidity of the pool

    liquidity_eth stringrequired

    The liquidity of the pool (denominated in ETH).

    token0

    object

    required

    address stringrequired

    The token address.

    name stringrequired

    The name of the token.

    symbol stringrequired

    The symbol of the token.

    decimals stringrequired

    The number of decimals of the token.

    token1

    object

    required

    address stringrequired

    The token address.

    name stringrequired

    The name of the token.

    symbol stringrequired

    The symbol of the token.

    decimals stringrequired

    The number of decimals of the token.

Loading...