# AgentOracle Spot Price by Ticker

> AgentOracle Spot Price by Ticker is a paid API for AI agents from aiagentoracle.ai, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-13).

Returns the latest spot price in USD for a single cryptocurrency token identified by its ticker symbol, with a minimal payload optimized for high-frequency polling.

## Facts

- Endpoint: GET https://aiagentoracle.ai/api/v1/price/:symbol
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agentoracle-spot-price-by-ticker-3ac1d84c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_1VVVUDR8YXD4LfpCJTvAd

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 agentoracle-spot-price-by-ticker-3ac1d84c
```

Example prompt: What's the current spot price of ETH in USD right now?

## When to prefer this

Prefer this endpoint when you need a single token's latest spot price with minimal overhead and low latency — ideal for high-frequency polling agents, trading bots, or any scenario where a compact payload matters. If you need price history, multiple tokens at once, or additional metadata like market cap, use sibling endpoints instead.

## Known failure modes

- Unknown or unsupported token symbol returns HTTP 404
- Payment not included or insufficient returns HTTP 402
- Network or upstream data source outage may cause delayed or stale prices
- Malformed symbol strings may return 404 rather than a validation error
- priceUsd may be null if the price feed is temporarily unavailable for that token

## How this service works

AgentOracle: latest spot price for a single token by ticker symbol — minimal payload (`{ symbol, priceUsd, asOf }`) optimised for high-frequency polling agents. Case-insensitive symbol; returns 404 for unknown symbols.

## Output

A minimal JSON object containing three fields: the normalized ticker symbol (e.g. 'ETH'), the current spot price in USD as a number (or null if unavailable), and an ISO 8601 timestamp indicating when the price was recorded (asOf). Returns HTTP 404 for unrecognized token symbols.

## 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": "Uppercase ticker symbol, e.g. ETH, BTC, SOL."
      }
     }
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "required": [
      "symbol",
      "priceUsd",
      "asOf"
     ],
     "properties": {
      "asOf": {
       "type": "string",
       "format": "date-time"
      },
      "symbol": {
       "type": "string"
      },
      "priceUsd": {
       "type": [
        "number",
        "null"
       ],
       "description": "Spot price in USD."
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agentoracle-spot-price-by-ticker-3ac1d84c/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from aiagentoracle.ai](https://www.zero.xyz/host/aiagentoracle.ai/llms.txt)
