# AgentToll Price Alert Check

> AgentToll Price Alert Check 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).

Checks whether a crypto asset's current price has moved past a user-defined percentage threshold relative to a reference price

## Facts

- Endpoint: GET https://agenttoll.app/api/watch/price/:symbol
- 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-price-alert-check-60c8ad4e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_zDM7_jV-M1OxeVqhOInrY

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-price-alert-check-60c8ad4e
```

Example prompt: Check if ETH has moved more than 3% from my reference price of 3200 — I want to know if my alert threshold has been breached.

## When to prefer this

Choose this endpoint when you need a lightweight, single-call check on whether a crypto asset has moved past a specific percentage threshold from a known reference price — ideal for alert-driven workflows, trading bots, and portfolio monitoring agents that need a simple breach/no-breach signal without managing full price feeds.

## Known failure modes

- Unknown or invalid ticker/CoinGecko id returns an error
- Missing required 'ref' query parameter causes a 400-level error
- Price data unavailable for obscure tokens
- Network timeouts fetching live price data
- Payment of 0.001 USDC not fulfilled results in 402 Payment Required

## How this service works

Price alert check: whether an asset moved past your threshold from a reference price

## Output

Returns whether the asset's current price has breached the specified percentage threshold relative to the provided reference price, indicating if a price alert condition has been triggered.

## 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"
    },
    "pathParams": {
     "type": "object",
     "required": [
      "symbol"
     ],
     "properties": {
      "symbol": {
       "type": "string",
       "description": "Ticker or CoinGecko id"
      }
     }
    },
    "queryParams": {
     "type": "object",
     "required": [
      "ref"
     ],
     "properties": {
      "pct": {
       "type": "number",
       "description": "Threshold in percent, default 2"
      },
      "ref": {
       "type": "number",
       "description": "Reference price in USD to compare against"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agenttoll-price-alert-check-60c8ad4e/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)
