# x402stock Related Tickers by Co-occurrence

> x402stock Related Tickers by Co-occurrence is a paid API for AI agents from agents.x402stock.xyz, paid per call via MPP, $0.01/call, status unknown (last checked 2026-09-14).

Returns a list of tickers related to a given US stock symbol based on news and analyst coverage co-occurrence, providing a quick peer set for comparative analysis.

## Facts

- Endpoint: GET https://agents.x402stock.xyz/api/v1/related/{ticker}
- Price: $0.01/call
- Payment: MPP
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Provider: agents.x402stock.xyz
- Website: https://agents.x402stock.xyz
- Canonical page: https://www.zero.xyz/c/agents-x402stock-xyz-x402stock-related-tickers-by-co-occurrence-444474a5
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_nw661bBm0ifsBagnmtHQM

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 agents-x402stock-xyz-x402stock-related-tickers-by-co-occurrence-444474a5
```

Example prompt: What tickers are most closely related to NVDA based on news and analyst co-occurrence? I want to build a quick peer set for comparison.

## When to prefer this

Use this endpoint when you need a fast, data-driven peer set for a US-listed stock without manually curating a competitor list — particularly useful for comparative valuation, watchlist construction, or identifying analyst coverage clusters. Prefer this over manually searching news or financial databases when you need a programmatic, structured list of co-occurring tickers. Best for US-listed equities where news and analyst co-occurrence data is rich.

## Known failure modes

- Invalid or unrecognized ticker symbol returns an error or empty related list
- Ticker not covered by co-occurrence data returns zero results
- Payment failure via x402 protocol blocks the request
- Delisted or OTC tickers may not be supported
- Rate or network issues may cause timeouts

## How this service works

Tickers related to the given symbol based on news and analyst coverage co-occurrence, a quick peer set for comparative analysis. From x402stock, a pay-per-call market & economic data API for AI agents. No API key or account; pay in USDC via x402.

## Output

A JSON object containing the queried ticker, a list of related ticker symbols derived from news and analyst coverage co-occurrence, a count of related tickers returned, the data source identifier ('x402stock'), and an as_of timestamp indicating data freshness.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "ticker"
 ],
 "properties": {
  "ticker": {
   "type": "string",
   "description": "US-listed ticker symbol (uppercase), e.g. AAPL."
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "ticker",
  "data",
  "source",
  "as_of"
 ],
 "properties": {
  "data": {
   "type": "object",
   "required": [
    "count",
    "related"
   ],
   "properties": {
    "count": {
     "type": "number"
    },
    "related": {
     "type": "array",
     "items": {
      "type": "string"
     }
    }
   },
   "additionalProperties": false
  },
  "as_of": {
   "type": "string"
  },
  "source": {
   "type": "string",
   "const": "x402stock"
  },
  "ticker": {
   "type": "string"
  },
  "feedback": {
   "type": "object",
   "required": [
    "endpoint",
    "method",
    "free",
    "note"
   ],
   "properties": {
    "free": {
     "type": "boolean"
    },
    "note": {
     "type": "string"
    },
    "method": {
     "type": "string",
     "const": "POST"
    },
    "endpoint": {
     "type": "string"
    }
   },
   "additionalProperties": false
  }
 },
 "additionalProperties": false
}
```

## More

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