# x402stock Related Tickers Lookup

> x402stock Related Tickers Lookup is a paid API for AI agents from x402stock.xyz, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Returns a list of stocks/ETFs that are closely related to or correlated with a given ticker symbol

## Facts

- Endpoint: GET https://x402stock.xyz/api/v1/related/%7Bticker%7D
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/x402stock-related-tickers-lookup-f9e74f4b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_o9MMW3m1Zz3Ouh7HqdBbg

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 x402stock-related-tickers-lookup-f9e74f4b
```

Example prompt: What stocks are closely related to AAPL — like its market peers and correlated names?

## When to prefer this

Use this endpoint when you need to discover stocks that are correlated with or peer to a given ticker — ideal for building watchlists, peer comparison screens, or diversification analysis. Prefer this over general market search endpoints when you already have a specific ticker and want to find its market relatives without manually curating peer groups.

## Known failure modes

- Invalid or unknown ticker symbol returns an error or empty related list
- Ticker not found in the database returns a 404 or empty data response
- Network or payment failure (x402 USDC payment not processed) results in 402 Payment Required
- Rate limiting or temporary service unavailability returns a 5xx error

## How this service works

Pay-per-call market and economic data API for AI agents: US stocks, ETFs and options, forex, crypto and on-chain perps, energy commodities, US and global macro (Fed, CPI, jobs, GDP, Treasury, World Bank), SEC filings, congressional trades, and market sentiment. No API keys, no accounts. Pay per request in USDC via x402 on Base.

## Output

A JSON object containing the queried ticker, a list of related ticker symbols (e.g. ['MSFT','AMZN','GOOGL','NVDA','META']), a count of related tickers, and an as-of timestamp indicating data freshness.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "properties": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "data": {
   "count": 5,
   "related": [
    "MSFT",
    "AMZN",
    "GOOGL",
    "NVDA",
    "META"
   ]
  },
  "as_of": "2026-05-29T20:00:00.000Z",
  "source": "x402stock",
  "ticker": "AAPL"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/x402stock-related-tickers-lookup-f9e74f4b/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402stock.xyz](https://www.zero.xyz/host/x402stock.xyz/llms.txt)
