# Agent Newsstand — Full Trading Context for Tokenized Asset

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

Returns a comprehensive trading context snapshot for a tokenized asset (stocks, commodities, etc.) including price, news, macro signals, and related data.

## Facts

- Endpoint: GET https://api.agentnewsstand.com/v1/context
- Price: $0.03/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-full-trading-context-for-tokenized-asset-f27f735e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_WPi9UHIM0la3jstKSLlWY

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-full-trading-context-for-tokenized-asset-f27f735e
```

Example prompt: Pull the full trading context for xyz:TSLA covering the last 30 days — I want price data, macro signals, news, and anything else relevant to trading it right now.

## When to prefer this

Choose this endpoint when you need a comprehensive, all-in-one trading context bundle for a tokenized asset rather than fetching individual data points (candles, SEC filings, macro data) separately. It is ideal for agents that need to make or explain trading decisions and want a single call to get everything relevant. Prefer this over sibling endpoints like candles-only or SEC-filings-only when breadth of context matters more than depth on a single dimension.

## Known failure modes

- Missing required 'symbol' parameter — returns 400 or validation error
- Invalid symbol format (e.g. missing venue prefix like 'xyz:') — returns error or empty result
- 'days' out of range (must be 1-90) — returns validation error
- Symbol not found or unsupported token — returns 404 or empty context
- Payment not processed or x402 payment failure — returns 402 Payment Required
- Upstream data source unavailable — may return partial context or 503

## How this service works

Full trading context for a tokenized asset

## Output

A bundled trading context object for the requested tokenized asset symbol, covering the specified day range. Likely includes price/candle data, relevant news headlines, SEC filings or earnings signals, US macro indicators, and other intelligence relevant to trading that asset.

## 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:TSLA or xyz:GOLD"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agent-newsstand-full-trading-context-for-tokenized-asset-f27f735e/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)
