# Uniswap V3 Pool Stats via x402node

> Uniswap V3 Pool Stats via x402node is a paid API for AI agents from api.x402node.dev, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-14).

Returns liquidity pool statistics for a Uniswap V3 pool on Ethereum by pool address, including token pair, fee tier, TVL, all-time volume, current prices, and transaction count

## Facts

- Endpoint: GET https://api.x402node.dev/pool/info
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/uniswap-v3-pool-stats-via-x402node-d7bb7cef
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_sELZCNmomGlnvz83wouOq

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability uniswap-v3-pool-stats-via-x402node-d7bb7cef
```

Example prompt: Can you pull up the Uniswap V3 pool stats for the USDC/ETH pool at address 0x88e6A0c2dDD26FEEb64F039a2c41296FcB3f5640 — I want to see the TVL, all-time volume, current token prices, and transaction count.

## When to prefer this

Use this endpoint when you need on-chain Uniswap V3 pool statistics for a known pool address on Ethereum mainnet, especially TVL, volume, and current pricing data sourced from the Uniswap subgraph. Prefer this over raw RPC calls when you want structured, aggregated historical stats (all-time volume, tx count) in one call rather than computing them yourself.

## Known failure modes

- Invalid or non-existent pool address returns an error or empty result
- Non-Uniswap V3 contract address may return no data
- Subgraph may have indexing lag causing slightly stale data
- Rate limiting or authentication failure if API key is exhausted
- Network or subgraph downtime causing temporary unavailability

## How this service works

Uniswap V3 liquidity pool stats on Ethereum by pool address: token pair, fee tier, total value locked in USD, all-time volume, current token prices and transaction count, from a subgraph behind an API key. uniswap pool, liquidity pool stats, pool tvl, pool volume, dex pool data Accepts payment on Base or Solana — either network works.

## Output

Returns a JSON object with the token pair names and addresses, fee tier percentage, total value locked in USD, all-time trading volume in USD, current prices of both tokens, and total transaction count for the specified Uniswap V3 pool on Ethereum mainnet.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "pool"
     ],
     "properties": {
      "pool": {
       "type": "string",
       "description": "pool contract 0x..."
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/uniswap-v3-pool-stats-via-x402node-d7bb7cef/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.x402node.dev](https://www.zero.xyz/host/api.x402node.dev/llms.txt)
