# 2s.io Stock Symbol Search

> 2s.io Stock Symbol Search is a paid API for AI agents from 2s.io, paid per call via x402, $0.0025/call, status unknown (last checked 2026-09-14).

Search or enumerate tradable equity symbols for an exchange, resolving company names to tickers or listing a market's full symbol universe.

## Facts

- Endpoint: GET https://2s.io/api/stocks/symbols
- Price: $0.0025/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/2s-io-stock-symbol-search-8c4800dd
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_RXzwbtViwmmzEzr4D_q5g

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 2s-io-stock-symbol-search-8c4800dd
```

Example prompt: What's the ticker symbol for Palantir on the US exchange? I want to know its FIGI and security type too.

## When to prefer this

Use this endpoint when you need to resolve a human-readable company name to a machine-usable ticker symbol, enumerate all tradable instruments on a given exchange, or retrieve standardized identifiers (MIC, FIGI) for a security. Prefer over general web search when you need structured, exchange-authoritative data rather than approximate results.

## Known failure modes

- No results returned if query string matches nothing in the exchange
- Invalid exchange code returns empty or error response
- Limit parameter too large may cause timeout or truncated results
- Ambiguous company names may return many unrelated results requiring further filtering

## How this service works

Search or list the tradable equity symbol universe for an exchange. Pass q to substring-match on symbol or company name (case-insensitive), and/or exchange (default US) and limit. Returns matching listings with symbol, display symbol, description (company name), security type (e.g. Common Stock, ETF), currency, MIC, and FIGI. Use it to resolve a name to a ticker or enumerate a market. Data by Finnhub.

## Output

A list of matching securities, each with symbol, display symbol, company/description name, security type (e.g. Common Stock, ETF), currency, MIC (market identifier code), and FIGI (Financial Instrument Global Identifier).

## 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",
    "queryParams"
   ],
   "properties": {
    "type": {
     "const": "http"
    },
    "method": {
     "const": "GET"
    },
    "queryParams": {
     "required": [],
     "properties": {
      "q": {
       "type": "string",
       "description": "Substring to match on symbol or name."
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/2s-io-stock-symbol-search-8c4800dd/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from 2s.io](https://www.zero.xyz/host/2s.io/llms.txt)
