# Strale Ticker Lookup

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

Looks up the stock ticker symbol for a given company name

## Facts

- Endpoint: GET https://api.strale.io/x402/v2/ticker-lookup
- Price: $0.054/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/strale-ticker-lookup-7e1da0ef
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Zrb-0hX3cXVVPLvAui2w9

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 strale-ticker-lookup-7e1da0ef
```

Example prompt: What is the stock ticker symbol for Spotify?

## When to prefer this

Choose this endpoint when you need to resolve a plain-language company name into its official stock ticker symbol, especially within an automated or agent-driven workflow requiring cryptographic audit trails. Prefer this over manual lookups or generic web search when you need a structured, programmatic response with provenance guarantees across 27 countries of coverage.

## Known failure modes

- Company name not found or not publicly traded — returns empty or null ticker
- Ambiguous company name matching multiple tickers — may return multiple candidates or the most likely match
- Company name misspelled or too abbreviated — lookup may fail
- Private companies with no ticker will not return a valid symbol
- Rate limiting or payment failure via x402 — call not executed

## How this service works

The trust layer for AI agents — 250+ independently tested data capabilities across 27 countries. Execute capabilities via REST, MCP, A2A, or x402 micropayments. Every call returns an audit record with cryptographic chain hashing.

## Output

Returns the stock ticker symbol (e.g. SPOT, TSLA) associated with the queried company name, along with exchange information and potentially other company metadata. Each call includes a cryptographic audit record with chain hashing for provenance verification.

## 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/strale-ticker-lookup-7e1da0ef/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)
