# Agent Newsstand — Tokenized Asset OHLCV Candles

> Agent Newsstand — Tokenized Asset OHLCV Candles is a paid API for AI agents from api.agentnewsstand.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Returns historical OHLCV candlestick data for tokenized assets by venue symbol, covering up to 90 days of price history.

## Facts

- Endpoint: GET https://api.agentnewsstand.com/v1/candles
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agent-newsstand-tokenized-asset-ohlcv-candles-78826138
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_04V0pk4-tTvb_QW-tnWFW

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 agent-newsstand-tokenized-asset-ohlcv-candles-78826138
```

Example prompt: Pull the last 30 days of daily candles for xyz:GOLD so I can see its recent price trend.

## When to prefer this

Choose this endpoint when you need historical OHLCV candlestick data specifically for tokenized real-world assets or on-chain venue-traded tokens, and you want pay-per-call access with no API key or subscription required. It is distinct from traditional equity data providers because it focuses on tokenized asset venues and uses USDC micropayments via x402.

## Known failure modes

- Invalid or unrecognized venue symbol returns an error or empty dataset
- Requested days value outside 1–90 range rejected by schema validation
- Payment not received or insufficient USDC balance causes 402 response
- Symbol format not matching 'venue:TICKER' pattern may result in lookup failure
- Service temporarily unavailable returns 5xx error

## How this service works

15 pay-per-call endpoints for AI agents: tokenized-asset candles, SEC filings, earnings, US macro, web search, page reader, paywall unlock, screenshots. USDC on Base via x402. No API keys, no signup.

## Output

An array of OHLCV candlestick records for the requested tokenized asset symbol, each containing open, high, low, close prices and volume for each time period, covering the specified number of days (1–90).

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "symbol"
     ],
     "properties": {
      "days": {
       "type": "integer",
       "maximum": 90,
       "minimum": 1
      },
      "symbol": {
       "type": "string",
       "description": "Venue symbol, e.g. xyz:GOLD"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agent-newsstand-tokenized-asset-ohlcv-candles-78826138/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.agentnewsstand.com](https://www.zero.xyz/host/api.agentnewsstand.com/llms.txt)
