# Market Data Ticker Overview

> Market Data Ticker Overview is a paid API for AI agents from marketdata.use.x402atlas.com, paid per call via x402, $0.015/call, status unknown (last checked 2026-09-14).

Returns reference metadata for a ticker symbol — including name, exchange, market cap, shares outstanding, industry, and description — covering stocks, crypto, and forex.

## Facts

- Endpoint: GET https://marketdata.use.x402atlas.com/ticker
- Price: $0.015/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/market-data-ticker-overview-7da95401
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_96MCRKaQ2JUBUdzWRdent

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 market-data-ticker-overview-7da95401
```

Example prompt: Look up the reference overview for NVDA — I want the full company name, which exchange it trades on, market cap, shares outstanding, and its industry classification.

## When to prefer this

Use this endpoint when you need static reference/profile data about a ticker — name, exchange, market cap, industry, description — rather than price or time-series data. Ideal for enriching a ticker symbol with human-readable context, building instrument lookups, or populating a dashboard header. Supports stocks, crypto, and forex in a single unified endpoint.

## Known failure modes

- Invalid or unrecognized ticker symbol returns an error or empty result
- Crypto tickers must use the correct prefix format (e.g. X:BTCUSD) or lookup may fail
- Forex tickers may have limited metadata compared to equities
- Rate limiting or payment failure if x402 payment is not processed correctly
- Stale or missing data for thinly traded or newly listed tickers

## How this service works

Reference overview for a ticker — name, exchange, market cap, shares outstanding, industry and description across stocks, crypto and forex.

## Output

Returns structured reference data for the queried ticker including the full name, listing exchange, market capitalization, shares outstanding, industry category, and a textual description of the company or asset. Works for US stocks, crypto pairs (e.g. X:BTCUSD), and forex tickers.

## 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"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "ticker"
     ],
     "properties": {
      "ticker": {
       "type": "string",
       "description": "Ticker symbol, e.g. AAPL, X:BTCUSD"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "required": [
      "queried_at",
      "ticker",
      "overview"
     ],
     "properties": {
      "ticker": {
       "type": "string",
       "description": "Echo of the requested ticker."
      },
      "overview": {
       "type": "object",
       "required": [
        "ticker"
       ],
       "properties": {
        "cik": {
         "type": "string"
        },
        "name": {
         "type": "string"
        },
        "type": {
         "type": "string",
         "description": "Security type, e.g. CS (common stock)."
        },
        "active": {
         "type": "boolean"
        },
        "market": {
         "type": "string",
         "description": "e.g. stocks, crypto, fx."
        },
        "ticker": {
         "type": "string"
        },
        "currency": {
         "type": "string"
        },
        "sic_code": {
         "type": "string"
        },
        "list_date": {
         "type": "string",
         "format": "date"
        },
        "market_cap": {
         "type": "number"
        },
        "description": {
         "type": "string"
        },
        "homepage_url": {
         "type": "string",
         "format": "uri"
        },
        "sic_description": {
         "type": "string"
        },
        "total_employees": {
         "type": "number"
        },
        "primary_exchange": {
         "type": "string"
        },
        "shares_outstanding": {
         "type": "number"
        }
       },
       "description": "Reference overview for the ticker."
      },
      "queried_at": {
       "type": "string",
       "format": "date-time",
       "description": "UTC timestamp when this bridge queried the 
… (truncated)
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ticker": "AAPL",
  "overview": {
   "name": "Apple Inc.",
   "market": "stocks",
   "ticker": "AAPL",
   "currency": "usd",
   "market_cap": 3200000000000,
   "homepage_url": "https://www.apple.com",
   "sic_description": "Electronic Computers",
   "primary_exchange": "XNAS"
  },
  "queried_at": "2026-07-06T12:00:00Z"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/market-data-ticker-overview-7da95401/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from marketdata.use.x402atlas.com](https://www.zero.xyz/host/marketdata.use.x402atlas.com/llms.txt)
