# Market Data – Related/Peer Tickers

> Market Data – Related/Peer Tickers 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-15).

Returns comparable and peer basket tickers for a given stock ticker, derived from news co-occurrence and return correlations.

## Facts

- Endpoint: GET https://marketdata.use.x402atlas.com/related
- Price: $0.015/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/market-data-related-peer-tickers-3cc07dc3
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_CMbV91v-wgOv0feDWO1ZA

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-related-peer-tickers-3cc07dc3
```

Example prompt: What are the peer and comparable tickers for NVDA — I want to see which stocks are grouped with it based on news and return correlations?

## When to prefer this

Use this endpoint when you need to identify comparable companies, build a peer basket, or find stocks that trade similarly to a reference ticker — especially useful for relative valuation, benchmarking, or portfolio construction workflows. Prefer over manual sector lookups when you want news- and returns-derived similarity rather than simple SIC/GICS classification.

## Known failure modes

- Invalid or unrecognized ticker symbol returns an error or empty result
- Ticker not covered by the data provider returns no peers
- Network or payment authorization failure returns a 402 or 5xx error
- Rate limiting may cause transient failures

## How this service works

Related / peer tickers for a given ticker — comparables and peer baskets derived from news and returns.

## Output

A list of related/peer ticker symbols for the queried stock, representing the comparable basket derived from news co-occurrence and return-based similarity analysis.

## 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"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "required": [
      "queried_at",
      "ticker",
      "count",
      "related"
     ],
     "properties": {
      "count": {
       "type": "integer",
       "description": "Number of related tickers returned."
      },
      "ticker": {
       "type": "string",
       "description": "Echo of the requested ticker."
      },
      "related": {
       "type": "array",
       "items": {
        "type": "string"
       },
       "description": "Peer/related ticker symbols."
      },
      "queried_at": {
       "type": "string",
       "format": "date-time",
       "description": "UTC timestamp when this bridge queried the upstream."
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "count": 3,
  "ticker": "AAPL",
  "related": [
   "MSFT",
   "GOOGL",
   "AMZN"
  ],
  "queried_at": "2026-07-06T12:00:00Z"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/market-data-related-peer-tickers-3cc07dc3/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)
