# Arbitrum One Token Price Feed (x402.donnyautomation.com)

> Arbitrum One Token Price Feed (x402.donnyautomation.com) 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-16).

Returns the real-time spot price in USD for any ERC-20 token on Arbitrum One, sourced from SushiSwap and Uniswap v3 pools, with a confidence rating and liquidity backing.

## Facts

- Endpoint: GET https://x402.donnyautomation.com/arbitrum/price
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/arbitrum-one-token-price-feed-x402-donnyautomation-com-03c85fed
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ZD9f-BgxJ8PPN3e0qFmGi

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-token-price-feed-x402-donnyautomation-com-03c85fed
```

Example prompt: What's the live price of ARB in USD right now on Arbitrum One — and how confident is the quote based on pool liquidity?

## When to prefer this

Choose this endpoint when you need a real-time, on-chain spot price for any ERC-20 token on Arbitrum One (not just a fixed curated list) and need a confidence signal to avoid acting on thin-pool prices. It is preferable over off-chain price APIs when you specifically need Arbitrum L2 DEX-derived prices with liquidity transparency for trading bots, price oracles, or risk checks.

## Known failure modes

- Unknown or unsupported ticker symbol returns an error or null price
- Token with no active Arbitrum One pools returns no price data
- Very thin liquidity pool returns a low confidence rating, flagging the price as unreliable
- Network or RPC issues with Arbitrum One may cause request failure
- Incorrect symbol casing or typos result in no match

## How this service works

Spot token price in USD on Arbitrum One, read from SushiSwap and Uniswap v3 fee tiers pools at call time. Returns priceUsd, the routed pair, backing liquidityUsd, confidence and blockNumber. Requires ?symbol=TICKER (e.g. ARB) or ?token=0xADDRESS. Errors: 400 missing_symbol|unknown_token, 404 no_reliable_price when pools are too thin, 502 upstream_read_failed. Depth is /liquidity; a size-aware quote is /slippage. Chain-pinned; bare /price = BSC.

## Output

Returns a JSON object containing: priceUsd (the current spot price in USD), the DEX pair used to derive the quote (e.g. WETH/USDC on Uniswap v3), the USD liquidity backing the quote, and a confidence rating indicating whether the pool is deep enough to trust the price as a market price.

## 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": [
      "symbol"
     ],
     "properties": {
      "symbol": {
       "type": "string",
       "description": "Token symbol on Arbitrum One (e.g. WETH, ARB, WBTC, USDC, USDT, LINK)."
      }
     }
    }
   },
   "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-token-price-feed-x402-donnyautomation-com-03c85fed/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)
