# x402-gateway Token Price Lookup

> x402-gateway Token Price Lookup is a paid API for AI agents from x402.freeq.one, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-14).

Returns the current price of a cryptocurrency token, paid per-call via x402 micropayment on Base.

## Facts

- Endpoint: POST https://x402.freeq.one/tools/token_price
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/x402-gateway-token-price-lookup-bdff11cf
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_mWFd7xOlR-7S82zna8BUa

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 x402-gateway-token-price-lookup-bdff11cf -d '<json body>'
```

Example prompt: What's the current price of ETH right now? Use the x402 token price tool and charge the $0.002 micropayment from my wallet.

## When to prefer this

Choose this endpoint when you need a quick, pay-per-use token price lookup without a subscription, especially in agentic workflows where micropayment via x402 on Base is already set up. Ideal for low-frequency price checks where a full market data API subscription is overkill.

## Known failure modes

- Unknown or unsupported token symbol returns an error or null price
- Payment failure if wallet has insufficient USDC balance on Base
- Network or RPC errors causing price feed unavailability
- Rate limiting or gateway downtime causing request failure

## How this service works

x402-gateway tool: token_price — Get the live price of a token by symbol (e.g. ETH, USDC, MATIC).

## Output

Returns the current market price of the requested token, likely in USD, sourced via the x402-gateway micropayment MCP tool at a cost of $0.002 USDC per call settled on Base.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "symbol": {
   "type": "string",
   "description": "Token symbol, e.g. ETH"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "result": {}
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/x402-gateway-token-price-lookup-bdff11cf/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.freeq.one](https://www.zero.xyz/host/x402.freeq.one/llms.txt)
