> For the complete documentation index, see [llms.txt](https://hookrank.gitbook.io/hookrank/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://hookrank.gitbook.io/hookrank/public-api/endpoints/api-public-v1-uniswap-hooks-chainid-hookaddress/get.md).

# GET

When users want to investigate a specific hook, this endpoint provides comprehensive information. A DeFi protocol could use this to perform automated due diligence before integrating a hook.

<pre class="language-json"><code class="lang-json">{
  "data": {
      "id": 0,                     // Internal identifier for the hook
      "name": "string",            // Human-readable name of the hook
      "description": "string",     // Detailed description of hook's purpose and functionality
      "address": "string",         // On-chain contract address of the hook
      "isVerified": true,          // Whether hook has passed verification process
      "isProxy": true,             // Whether hook uses proxy pattern for upgrades
      "deployerAddress": "string", // Address that deployed the hook contract
      "network": {                 // Network details where hook is deployed
        "chainId": 0,              // Chain identifier (e.g., 1 for Ethereum)
        "name": "string"           // Network name (e.g., "Ethereum", "Base")
      },
      "isNoOp": true,              // Whether hook is considered NoOp
      "deployedAt": "string",      // Timestamp of hook deployment
      "successRate": 0,            // Percentage of successful hook executions
      "tvl": {                     // <a data-footnote-ref href="#user-content-fn-1">Total Value Locked</a> in hook's pools
        "amount": "string",   
        "currency": "string"  
      },
      "totalEarning": {            // <a data-footnote-ref href="#user-content-fn-2">Total earnings</a> generated by hook
        "amount": "string", 
        "currency": "string"  
      },
      "totalVolume": {             // <a data-footnote-ref href="#user-content-fn-3">Total trading volume</a> through hook
        "amount": "string",       
        "currency": "string"  
      }
  }
  "status": "success",             // API response status
  "timestamp": "string"           // Timestamp of the API response
}
</code></pre>

[^1]: [Total Value Locked](/hookrank/core-features/total-value-locked.md)

[^2]: [Earnings Analytics](/hookrank/core-features/earnings-analytics.md)

[^3]: [Transaction Volume](/hookrank/core-features/transaction-volume.md)
