# Ticker Overview

> Ticker Overview 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 detailed company and ticker information for a single stock or OTC symbol, optionally as of a specific historical date.

## Facts

- Endpoint: GET https://agent.massive.com/v3/reference/tickers/:ticker
- 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/ticker-overview-fe84d546
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_cBPD9Zjp61pCK8-fPc85j

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 ticker-overview-fe84d546
```

Example prompt: Can you pull up the full ticker overview for TSLA on Massive — I want to see the detailed company info and any SEC filing data associated with it?

## When to prefer this

Use this endpoint when you need rich, structured company and ticker details for a single known symbol — especially when SEC filing context or point-in-time historical data matters. Prefer this over a general search or 'All Tickers' endpoint when you already know the ticker symbol and want deep metadata rather than a list. Ideal for due diligence, portfolio research, or enriching financial data pipelines with company context.

## Known failure modes

- Ticker symbol not found or not supported by Massive — returns an error or empty result
- Case-sensitive ticker mismatch (e.g. 'aapl' instead of 'AAPL') causes lookup failure
- Historical date provided predates available data, returning no matching SEC filing
- Rate limiting or payment failure (x402 payment not processed) blocks the request
- Stale or incomplete SEC filing data for less-covered OTC symbols

## How this service works

Get a single ticker supported by Massive. This response will have detailed information about the ticker and the company behind it. Can't find what you're looking for? POST feedback to /feedback, no charge.

## Output

A detailed JSON object containing company and ticker metadata for the requested symbol, including corporate details derived from SEC filings (matched by period-of-report date when a historical date is specified), ownership information, and other available market data for that ticker. Data reflects the most recent available date unless a specific date is provided.

## 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": [
      "ticker"
     ],
     "properties": {
      "ticker": {
       "type": "string",
       "description": "Specify a case-sensitive ticker symbol. For example, AAPL represents Apple Inc."
      }
     }
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "date": {
       "type": "string",
       "format": "date",
       "description": "Specify a point in time to get information about the ticker available on that date. When retrieving information from SEC filings, we compare this date with the period of report date on the SEC filing. For example, consider an SEC filing submitted by AAPL on 2019-07-31, with a period of report date ending on 2019-06-29. That means that the filing was submitted on 2019-07-31, but the filing was created based on information from 2019-06-29. If you were to query for AAPL details on 2019-06-29, the ticker details would include information from the SEC filing. Defaults to the most recent available date."
      }
     }
    }
   },
   "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/ticker-overview-fe84d546/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)
