# Oblique Markets US Equity Snapshot

> Oblique Markets US Equity Snapshot is a paid API for AI agents from api.oblique.markets, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Returns a fresh OHLCV price snapshot for a single US-listed equity ticker with optional SMA/EMA/RSI technical indicators, refusing stale or unavailable data.

## Facts

- Endpoint: POST https://api.oblique.markets/api/v1/paid/us-equity-snapshot
- 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/oblique-markets-us-equity-snapshot-7d9beae0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_cwraZAG1Wo_aoYPJM6thU

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 oblique-markets-us-equity-snapshot-7d9beae0 -d '<json body>'
```

Example prompt: Pull a fresh daily OHLCV snapshot for TSLA over the last 30 trading days and include SMA-20 and RSI-14 indicators.

## When to prefer this

Use this endpoint when you need a guaranteed-fresh US equity OHLCV snapshot with optional technical indicators and explicit freshness/source attribution. It is especially valuable when data quality and recency are critical — the endpoint refuses stale data rather than silently serving it. Prefer it over generic financial data APIs when you need built-in SMA/EMA/RSI computation bundled with the price data in a single call, and when operating in an x402 micropayment agent workflow at $0.01 per call.

## Known failure modes

- Ticker not found or not US-listed — returns error refusing settlement
- Data is stale or not fresh enough — endpoint refuses without returning data
- Invalid interval value outside allowed enum (1d, 1wk, 1mo) — schema validation error
- Lookback integer too large or market closed — may return partial or refused response
- Payment not included or insufficient — x402 payment required error

## How this service works

Use when an agent needs us equity snapshot. Returns Fresh US equity OHLCV snapshot for one ticker and interval with bounded lookback, optional SMA/EMA/RSI indicators, source attribution and freshness evidence; stale or unavailable data is refused without settlement. $0.01.

## Output

Returns a structured JSON object containing OHLCV (open, high, low, close, volume) bars for the requested ticker, interval, and lookback window. Optionally includes computed SMA-20, EMA-20, and/or RSI-14 values per bar. Response includes source attribution and freshness evidence (e.g. timestamp of data). If the data is stale or unavailable, the endpoint refuses to return a result rather than serving bad data.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "ticker": {
   "type": "string",
   "description": "One US-listed ticker, uppercase letters only."
  },
  "interval": {
   "enum": [
    "1d",
    "1wk",
    "1mo"
   ],
   "type": "string"
  },
  "lookback": {
   "type": "integer"
  },
  "indicators": {
   "type": "array",
   "items": {
    "enum": [
     "sma_20",
     "ema_20",
     "rsi_14"
    ],
    "type": "string"
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "data": [
   {
    "low": 227.9,
    "high": 231.2,
    "open": 228.5,
    "time": "2026-08-28T00:00:00.000Z",
    "close": 230.1,
    "volume": 42100000,
    "adjusted_close": 230.1
   },
   {
    "low": 229.8,
    "high": 232,
    "open": 230.4,
    "time": "2026-08-29T00:00:00.000Z",
    "close": 231.7,
    "volume": 38900000,
    "adjusted_close": 231.7
   }
  ],
  "source": {
   "url": "https://query1.finance.yahoo.com/v8/finance/chart/AAPL",
   "name": "Yahoo Finance chart API",
   "retrieved_at": "2026-08-29T20:00:00.000Z"
  },
  "ticker": "AAPL",
  "evidence": {
   "query": {
    "ticker": "AAPL",
    "interval": "1d"
   },
   "provider": "Yahoo Finance chart API",
   "retrieved_at": "2026-08-29T20:00:00.000Z"
  },
  "interval": "1d",
  "lookback": 2,
  "freshness": {
   "latest_bar": "2026-08-29T00:00:00.000Z",
   "age_seconds": 72000,
   "max_age_seconds": 432000
  },
  "indicators": {
   "sma_20": 225.4
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/oblique-markets-us-equity-snapshot-7d9beae0/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.oblique.markets](https://www.zero.xyz/host/api.oblique.markets/llms.txt)
