LogoLogo
  • HOOKRANK
    • Introduction
  • CORE FEATURES
    • Dashboard
      • Hook List
      • Hook Details
    • Earnings Analytics
    • Gas Spendings
    • Total Value Locked
    • Transaction Volume
  • HOOKS KNOWLEDGE
    • NoOp Hooks
  • HookRank indexing
    • Events
      • Swap
      • Initialize
      • ModifyLiquidity
    • Tracked Data
  • PUBLIC API
    • Introduction
    • Endpoints
      • /api/public/v1/uniswap/hooks/networks
        • GET
      • /api/public/v1/uniswap/hooks/currencies
        • GET
      • /api/public/v1/uniswap/hooks
        • GET
      • /api/public/v1/uniswap/hooks/{{chainId}}/{{hookAddress}}
        • GET
      • /api/public/v1/uniswap/hooks/{{chainId}}/{{hookAddress}}/contract-metadata
        • GET
  • GUIDES
    • FAQs
    • How To Provide Custom Hook Integration Data
  • EXTERNAL LINKS
    • Twitter / X
    • GitHub
    • Discord
    • Brand Kit
Powered by GitBook
On this page
  1. PUBLIC API
  2. Endpoints
  3. /api/public/v1/uniswap/hooks/currencies

GET

This endpoint retrieves a list of currency pairs from pools that are deployed and associated with hooks. It’s particularly useful for building a trading terminal or developing an exchange on top of Uniswap V4 pools.

Response can be filtered by hook address using url parameter hookAddress:

/api/v1/uniswap/hooks/currencies?hookAddress=0x123

For that case only pairs from pools associated with defined hook will be provided.

{
    "data": [
        {
            "currency1": "mETH",
            "currency2": "mUSDC",
            "pair": "mETH_mUSDC"
        },
        {
            "currency1": "ETH",
            "currency2": "OK",
            "pair": "ETH_OK"
        },
        {
            "currency1": "SETH",
            "currency2": "SUSD",
            "pair": "SETH_SUSD"
        }
    ],
    "status": "success",
    "timestamp": "2024-09-03T13:11:58.945Z"
}
Previous/api/public/v1/uniswap/hooks/currenciesNext/api/public/v1/uniswap/hooks

Last updated 3 months ago