# Arbitrum One AMM Pool Reserves & Live Pool State

> Arbitrum One AMM Pool Reserves & Live Pool State is a paid API for AI agents from x402.donnyautomation.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Returns raw AMM pool reserves, mid price, fee tier, and USD TVL for a token pair across SushiSwap and Uniswap v3 fee tiers on Arbitrum One at the current block.

## Facts

- Endpoint: GET https://x402.donnyautomation.com/arbitrum/reserves
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/arbitrum-one-amm-pool-reserves-live-pool-state-04fd5392
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_b-c-XTQv_TG5AtG7whtB9

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 arbitrum-one-amm-pool-reserves-live-pool-state-04fd5392
```

Example prompt: Pull the raw AMM pool reserves, mid price, and USD TVL for WETH/USDC across SushiSwap and Uniswap v3 pools on Arbitrum One so I can compute slippage for a large trade.

## When to prefer this

Choose this endpoint when you need the raw underlying pool reserve numbers on Arbitrum One to do your own quote, price impact, slippage, or arbitrage math — rather than a pre-computed best price. It covers multiple venues (SushiSwap + Uniswap v3 multi-tier) in one call and is L2 Arbitrum-specific. Prefer sibling endpoints for pre-computed best execution price or thin-liquidity warnings.

## Known failure modes

- Unknown or unsupported token pair symbol returns an error or empty result
- Token pair with no deployed pools on Arbitrum One returns empty venues array
- Malformed pair string (e.g. missing slash separator) returns a validation error
- Temporary RPC or onchain data unavailability may cause timeout or stale data
- Unsupported token ticker not resolvable to a contract address returns an error

## How this service works

Raw AMM pool state for a pair on Arbitrum One: v2 reserves and v3 concentrated liquidity across SushiSwap and Uniswap v3 fee tiers. Returns pools[] with venue, surface, feeBps, reserveA, reserveB, price and tvlUsd at a stated blockNumber. Requires ?pair=SYM/SYM (e.g. WETH/USDC). Errors: 400 bad_pair, 404 no_pools, 502 upstream_read_failed. For USD depth already computed use /liquidity. This is the underlying numbers. Chain-pinned; bare /reserves = BSC.

## Output

Returns per-venue pool data for each fee tier and AMM on Arbitrum One: both token reserves, the pool mid price, fee tier in basis points, USD TVL, and the block number at which data was captured. Covers constant-product (SushiSwap) and concentrated-liquidity Uniswap v3 pools in a single response.

## 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": [
      "pair"
     ],
     "properties": {
      "pair": {
       "type": "string",
       "description": "Token pair as SYM/SYM on Arbitrum One (e.g. WETH/USDC)."
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ts": "2026-07-31T00:00:00.000Z",
  "chainId": 42161,
  "network": "arbitrum"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/arbitrum-one-amm-pool-reserves-live-pool-state-04fd5392/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.donnyautomation.com](https://www.zero.xyz/host/x402.donnyautomation.com/llms.txt)
