# x402stock.xyz Ticker Search

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

Search for US stock tickers by name or symbol with optional filters for type, exchange, and active status, returning symbol, name, exchange, type, and financial identifiers.

## Facts

- Endpoint: GET https://x402stock.xyz/api/v1/tickers
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/x402stock-xyz-829cd074
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ofY_Dl9t3rY7IbzrzACbP

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-829cd074
```

Example prompt: Search for up to 10 active common stock tickers matching 'Tesla' and tell me their symbols, exchanges, and FIGI identifiers.

## When to prefer this

Use this endpoint when you need to resolve a company name to its ticker symbol, verify which exchange a security trades on, retrieve financial identifiers like FIGI or CIK, or filter the universe of tickers by type or exchange. Prefer this over general web search when structured, machine-readable ticker metadata with standard identifiers is needed.

## Known failure modes

- No tickers found matching search term — returns empty tickers array with count 0
- Payment required (402) if x402 USDC payment header not provided
- Invalid query parameter values (e.g. limit out of range) return 400 validation error
- Unknown exchange or type values may return empty results rather than an error
- Rate limiting or upstream data provider unavailability returns 5xx

## How this service works

Find tickers by free-text `?search=` (name or symbol) across asset classes via `?market=stocks|crypto|fx|indices` (default stocks), with optional `?type=`, `?exchange=`, `?active=`, `?limit=`. Returns symbol, name, market, exchange, type, and identifiers. Use to discover crypto pairs (X:BTCUSD), FX pairs (C:EURUSD), and index symbols (I:SPX). From x402stock

## Output

Returns a JSON object with a source label, as_of date, count, and an array of ticker objects each containing: ticker symbol, company name, market, locale, primary exchange, security type, active flag, currency, CIK, and composite FIGI identifier.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "limit": 10,
   "active": true,
   "market": "stocks",
   "search": "Microsoft"
  }
 }
}
```

## 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",
     "$schema": "https://json-schema.org/draft/2020-12/schema",
     "required": [
      "market",
      "active",
      "limit"
     ],
     "properties": {
      "type": {
       "type": "string",
       "maxLength": 20,
       "minLength": 1
      },
      "limit": {
       "type": "integer",
       "default": 20,
       "maximum": 1000,
       "exclusiveMinimum": 0
      },
      "active": {
       "type": "boolean",
       "default": true
      },
      "market": {
       "enum": [
        "stocks",
        "crypto",
        "fx",
        "indices"
       ],
       "type": "string",
       "default": "stocks"
      },
      "search": {
       "type": "string",
       "maxLength": 100,
       "minLength": 1
      },
      "exchange": {
       "type": "string",
       "maxLength": 20,
       "minLength": 1
      }
     },
     "additionalProperties": false
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "$schema": "https://json-schema.org/draft/2020-12/schema",
     "required": [
      "source",
      "as_of",
      "count",
      "tickers"
     ],
     "properties": {
      "as_of": {
       "type": "string"
      },
      "count": {
       "type": "number"
      },
      "source": {
       "type": "string",
       "const": "x402stock"
      },
      "tickers": {
       "type": "array",
       "items": {
        "type": "object",
        "required": [
         "ticker",
         "name",
         "market",
         "locale",
         "primary_exchange",
         "type",
         "active",
         "currency",
         "cik",
         "composite_figi"
        ],
        "properties": {
         "cik": {
          "anyOf": [
           {
            "type": "string"
           },
           {
            "type": "null"
           }
          ]
         },
         "name": {
          "type": "string"
         },
         "type": {
          "
… (truncated)
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "as_of": "2026-05-29T20:00:00.000Z",
  "count": 1,
  "source": "x402stock",
  "tickers": [
   {
    "cik": "0000320193",
    "name": "Apple Inc.",
    "type": "CS",
    "active": true,
    "locale": "us",
    "market": "stocks",
    "ticker": "AAPL",
    "currency": "usd",
    "composite_figi": "BBG000B9XRY4",
    "primary_exchange": "XNAS"
   }
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/x402stock-xyz-829cd074/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)
