# Stock Ticker Snapshot

> Stock Ticker Snapshot is a paid API for AI agents from agent.massive.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-13).

Returns the most current real-time market data snapshot for a single US stock ticker symbol

## Facts

- Endpoint: GET https://agent.massive.com/v2/snapshot/locale/us/markets/stocks/tickers/:stocksTicker
- 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/stock-ticker-snapshot-c6a02b2a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_pbjQ4-DEJ9FlNmT828jqn

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 stock-ticker-snapshot-c6a02b2a
```

Example prompt: What's the current market snapshot for AAPL — give me the latest price, volume, and bid/ask?

## When to prefer this

Use this endpoint when you need the most current, single-point-in-time market data for a specific US stock ticker — including live price, bid/ask spread, volume, and intraday range. Prefer this over historical OHLC or daily summary endpoints when real-time accuracy matters (e.g., pre-trade checks, live portfolio valuation, or intraday monitoring). For multiple tickers or historical data, consider sibling endpoints like Daily Ticker Summary or Top Market Movers.

## Known failure modes

- Invalid or unrecognized ticker symbol returns an error or empty result
- Data may be sparse or unavailable before ~4am EST after the nightly 3:30am reset
- After-hours or pre-market data may be limited depending on exchange reporting
- Non-US or OTC tickers may not be supported by this endpoint
- Payment failure (insufficient USDC balance) blocks the call

## How this service works

Get the most up-to-date market data for a single traded stock ticker. Note: Snapshot data is cleared at 3:30am EST and gets populated as data is received from the exchanges. This can happen as early as 4am EST. Can't find what you're looking for? POST feedback to /feedback, no charge.

## Output

Returns a JSON object with the latest market data snapshot for the requested ticker, including current price, bid, ask, volume, VWAP, day open, day high, day low, last trade details, and market status. Data is sourced directly from US exchanges and refreshes as new data arrives throughout the trading day, typically starting as early as 4am EST after the nightly 3:30am data reset.

## 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": [
      "stocksTicker"
     ],
     "properties": {
      "stocksTicker": {
       "type": "string",
       "description": "Specify a case-sensitive ticker symbol. For example, AAPL represents Apple Inc."
      }
     }
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "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/stock-ticker-snapshot-c6a02b2a/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agent.massive.com](https://www.zero.xyz/host/agent.massive.com/llms.txt)
