# AgentToll Token Price by Symbol

> AgentToll Token Price by Symbol is a paid API for AI agents from agenttoll.app, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-15).

Returns the current USD price, 24h change, and source for a cryptocurrency by ticker symbol (e.g. ETH, BTC, SOL)

## Facts

- Endpoint: GET https://agenttoll.app/api/price/%7Bsymbol%7D
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agenttoll-token-price-by-symbol-e19586bd
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ZsIYhZsyl218FfaTH5D7k

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 agenttoll-token-price-by-symbol-e19586bd
```

Example prompt: What is the current USD price of ETH and how much has it moved in the last 24 hours?

## When to prefer this

Choose this endpoint when you need a quick, low-cost USD price lookup for a major cryptocurrency by its ticker symbol (ETH, BTC, SOL, etc.) and want a 24h change included without managing API keys. Prefer this over CoinGecko direct if you want pay-per-call pricing via x402 with no registration. For Base-specific token prices by contract address, use the sibling contract-address price endpoint instead.

## Known failure modes

- Unknown or unsupported symbol returns an error or empty response
- Stale data if CoinGecko upstream is delayed
- Symbol ambiguity if ticker maps to multiple tokens
- Network or payment failure via x402 protocol returns 402 or 5xx

## How this service works

Base-native onchain data for AI agents — gas, token prices by contract, address analytics, DEX pools, new-token radar. From $0.001 a call in USDC via x402. No API keys. Open source.

## Output

A JSON object containing the token's CoinGecko ID, ticker symbol, current USD price, 24h percentage change, data source (e.g. 'coingecko'), and an ISO timestamp of when the price was fetched.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "properties": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "at": "2026-08-05T13:31:57.070Z",
  "id": "ethereum",
  "usd": 1867.28,
  "source": "coingecko",
  "symbol": "eth",
  "change24h": -0.1
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agenttoll-token-price-by-symbol-e19586bd/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agenttoll.app](https://www.zero.xyz/host/agenttoll.app/llms.txt)
