# Strale Ticker Lookup

> Strale Ticker Lookup is a paid API for AI agents from api.strale.io, paid per call via x402, $0.054001/call, status unknown (last checked 2026-09-14).

Find stock ticker symbols by searching a company name, returning matched symbol, exchange, and instrument type

## Facts

- Endpoint: GET https://api.strale.io/x402/ticker-lookup
- Price: $0.054001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/api-strale-io-1d2154f7
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_uIEbFMKaytgo_amWXBY31

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 api-strale-io-1d2154f7
```

Example prompt: What's the stock ticker symbol for Spotify — which exchange does it trade on and what type of instrument is it?

## When to prefer this

Use this endpoint when you need to resolve a human-readable company name into its stock ticker symbol and exchange — ideal for financial research agents, portfolio tools, or any workflow that needs to programmatically identify a security before querying pricing or market data.

## Known failure modes

- Company name not found — returns empty match list
- Ambiguous query returns multiple unrelated matches
- Very new or private company not yet listed — no results
- Misspelled company name yields no matches
- Exchange or type metadata missing for some results

## How this service works

Find stock ticker symbols by company name. Returns matches with symbol, exchange, and type.

## Output

A list of matches each containing the ticker symbol (e.g. SPOT), the exchange it trades on (e.g. NYSE), and the instrument type (e.g. stock/ETF). Multiple results may be returned if the company name is ambiguous.

## Example request

```json
{
 "query": "Apple"
}
```

## 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",
     "required": [
      "query"
     ],
     "properties": {
      "query": {
       "type": "string",
       "description": "Company name (e.g. 'Spotify', 'Tesla')"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/api-strale-io-1d2154f7/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.strale.io](https://www.zero.xyz/host/api.strale.io/llms.txt)
