> 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-networks/get.md).

# 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:

```json
{
    "data": [
        {
            "name": "Ethereum",
            "chainId": 1
        },
        {
            "name": "BSC Testnet",
            "chainId": 97
        },
        {
            "name": "Ethereum Sepolia",
            "chainId": 11155111
        }
    ],
    "status": "success",
    "timestamp": "2024-08-17T12:02:09.359Z"
}
```
