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/networks

GET

This endpoint returns a list of networks with Uniswap V4 deployments supported by HookRank. The response is formatted as "name – chainId" pairs for ease of integration:

{
    "data": [
        {
            "name": "Ethereum",
            "chainId": 1
        },
        {
            "name": "BSC Testnet",
            "chainId": 97
        },
        {
            "name": "Ethereum Sepolia",
            "chainId": 11155111
        }
    ],
    "status": "success",
    "timestamp": "2024-08-17T12:02:09.359Z"
}
Previous/api/public/v1/uniswap/hooks/networksNext/api/public/v1/uniswap/hooks/currencies

Last updated 2 months ago