# Daily Market Summary (OHLC)

> Daily Market Summary (OHLC) 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 daily open, high, low, and close (OHLC) prices for all US stocks and equities for a given date.

## Facts

- Endpoint: GET https://agent.massive.com/v2/aggs/grouped/locale/us/market/stocks/:date
- 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/daily-market-summary-ohlc-04e0c8ab
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_2ocHM6a-4snIwyIAZ6MJo

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 daily-market-summary-ohlc-04e0c8ab
```

Example prompt: Can you pull the full daily OHLC summary for all US stocks for January 15, 2025, including OTC securities and using split-adjusted prices?

## When to prefer this

Use this endpoint when you need a snapshot of OHLC price data across the entire US equities market for a single date, rather than data for a specific ticker. Prefer this over the Daily Ticker Summary endpoint when you need market-wide aggregates rather than a single stock. Ideal for backtesting, market breadth analysis, or bulk portfolio valuation.

## Known failure modes

- Invalid or future date returns empty results or an error
- Non-trading day (weekend/holiday) returns no data or empty results set
- Malformed date format causes a 400 bad request
- Rate limiting or payment failure returns a 402 or 429 error
- OTC securities not included by default unless include_otc is set to true

## How this service works

Get the daily open, high, low, and close (OHLC) for the entire stocks/equities markets. Can't find what you're looking for? POST feedback to /feedback, no charge.

## Output

Returns an array of aggregated OHLC bar objects for every US stock and equity traded on the specified date, each containing ticker symbol, open, high, low, close, volume, and related trading statistics. Results are split-adjusted by default and OTC securities can optionally be included.

## 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": [
      "date"
     ],
     "properties": {
      "date": {
       "type": "string",
       "description": "The beginning date for the aggregate window."
      }
     }
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "adjusted": {
       "type": "boolean",
       "description": "Whether or not the results are adjusted for splits. By default, results are adjusted. Set this to false to get results that are NOT adjusted for splits."
      },
      "include_otc": {
       "type": "boolean",
       "description": "Include OTC securities in the response. Default is false (don't include OTC securities)."
      }
     }
    }
   },
   "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/daily-market-summary-ohlc-04e0c8ab/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)
