# TickerLayer Stocks Symbol Catalog

> TickerLayer Stocks Symbol Catalog is a paid API for AI agents from x402.tickerlayer.com, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-14).

Returns the full catalog of tradable stock symbols available on TickerLayer, each in market-qualified COUNTRY_OR_MARKET:SYMBOL format.

## Facts

- Endpoint: GET https://x402.tickerlayer.com/v1/stocks/symbols
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/tickerlayer-stocks-symbol-catalog-d466fa96
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_c_vOdl43Yd4v4qMEW1iRY

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 tickerlayer-stocks-symbol-catalog-d466fa96
```

Example prompt: Can you pull the full list of stock symbols available on TickerLayer, including their market codes like US:AAPL, so I can see what equities I can query?

## When to prefer this

Use this endpoint when you need to discover or validate which stock symbols are supported by TickerLayer before making downstream data calls, or when building a symbol picker/autocomplete. Prefer this over the ETF, Indices, Forex, Commodities, or Crypto catalog endpoints when you specifically need equity/stock listings. This is the right choice when you need the market-qualified symbol format (e.g. US:AAPL) for use with other TickerLayer endpoints.

## Known failure modes

- Payment failure: x402 payment of $0.02 USDC not processed, returns 402 Payment Required
- Network timeout if the catalog is large and connection is slow
- Empty or partial response if the catalog is temporarily unavailable
- Rate limiting if too many requests are made in quick succession

## How this service works

Discover the current TickerLayer Stocks symbol catalog. Stock symbols are market-qualified in COUNTRY_OR_MARKET:SYMBOL form such as US:AAPL.

## Output

An array of stock symbol objects, each containing: the market-qualified symbol (e.g. US:AAPL), the unqualified base symbol (e.g. AAPL), the company or instrument name, and the market/country code (e.g. US). The catalog covers all equities currently supported by TickerLayer across all available markets.

## 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": [],
     "properties": {},
     "additionalProperties": false
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "required": [
      "symbols"
     ],
     "properties": {
      "symbols": {
       "type": "array",
       "items": {
        "type": "object",
        "required": [
         "symbol",
         "name",
         "base_symbol",
         "market"
        ],
        "properties": {
         "name": {
          "type": "string"
         },
         "market": {
          "type": "string",
          "maxLength": 20,
          "minLength": 1,
          "description": "TickerLayer country or market code, for example US."
         },
         "symbol": {
          "type": "string",
          "pattern": "^[A-Za-z][A-Za-z0-9]*(?::|%3[Aa])[A-Za-z0-9][A-Za-z0-9.:%-]*$",
          "maxLength": 80,
          "minLength": 3,
          "description": "Market-qualified stock symbol in COUNTRY_OR_MARKET:SYMBOL form, for example US:AAPL."
         },
         "base_symbol": {
          "type": "string",
          "maxLength": 40,
          "minLength": 1,
          "description": "Unqualified base symbol, for example AAPL."
         }
        },
        "additionalProperties": true
       },
       "minItems": 1
      }
     },
     "additionalProperties": true
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/tickerlayer-stocks-symbol-catalog-d466fa96/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.tickerlayer.com](https://www.zero.xyz/host/x402.tickerlayer.com/llms.txt)
