# x402stock.xyz Related Tickers

> x402stock.xyz Related Tickers 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 related ticker symbols for a given stock (e.g. AAPL), sourced from Massive data provider.

## Facts

- Endpoint: GET https://x402stock.xyz/api/v1/related/AAPL
- 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-xyz-41e3f9d8
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_xmGvW_a1ualQJdr0NYILG

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-xyz-41e3f9d8
```

Example prompt: What tickers are related to AAPL on x402stock.xyz?

## When to prefer this

Use this endpoint when you need to discover peer or related stocks for a given ticker symbol, such as for building comparison screens, sector groupings, or correlation analysis. Prefer this over a general ticker search when you already have a specific symbol and want to find associated equities.

## Known failure modes

- Unknown or invalid ticker symbol returns empty related array or error
- Ticker not covered by the Massive data source returns no results
- Network or payment (x402) failure results in no response
- Rate limiting or insufficient USDC balance prevents call

## 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

Returns a JSON object with a ticker field (the queried symbol), a data object containing a count (number of related tickers) and a related array of ticker symbol strings, a source field indicating the data provider (Massive), and an as_of timestamp.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {}
 }
}
```

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "$schema": "https://json-schema.org/draft/2020-12/schema",
     "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/x402stock-xyz-41e3f9d8/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)
