# OpenIntel Find Token by Ticker

> OpenIntel Find Token by Ticker is a paid API for AI agents from api.openintel.agency, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-15).

Looks up on-chain token metadata (name, address, chain, market cap, liquidity, volume) for a given ticker symbol via pay-per-call proxy.

## Facts

- Endpoint: POST https://api.openintel.agency/api/v1/find_token_by_ticker
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/openintel-find-token-by-ticker-dd88914a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_wLcq31vgDTWEfzXFk1vi0

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 openintel-find-token-by-ticker-dd88914a -d '<json body>'
```

Example prompt: Can you look up the on-chain details for the token with ticker BNKR — I need the contract address, which chain it's on, and its current market cap and liquidity?

## When to prefer this

Use this endpoint when you need to resolve a short ticker symbol to its on-chain token metadata (contract address, chain, market data) and are willing to pay a small per-call fee. Prefer this over free alternatives when you need structured, machine-readable output with market metrics like FDV and liquidity in a single call.

## Known failure modes

- Ticker not found — returns error or empty result if the symbol is unknown or not indexed
- Ambiguous ticker — multiple tokens share the same symbol across chains, may return only one
- Stale data — market cap, liquidity, and volume figures may lag real-time DEX prices
- Payment failure — x402 micropayment not accepted, call blocked
- Rate limiting — excessive calls may be throttled

## How this service works

Pay-per-call proxy for the OpenIntel API.

## Output

A JSON object containing the token's full name, blockchain network (e.g. 'base'), ticker symbol, contract address, fully diluted valuation in USD, liquidity in USD, market cap in USD, and 24-hour trading volume in USD.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "chain": {
   "anyOf": [
    {
     "type": "string",
     "minLength": 1
    },
    {
     "type": "null"
    }
   ]
  },
  "limit": {
   "type": "integer",
   "maximum": 50,
   "minimum": 1
  },
  "ticker": {
   "type": "string",
   "minLength": 1
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "name": "BankrCoin",
  "chain": "base",
  "symbol": "BNKR",
  "address": "0x22aF33FE49fD1Fa80c7149773dDe5890D3c76F3b",
  "fdv_usd": 1200000,
  "liquidity_usd": 250000,
  "market_cap_usd": 1000000,
  "volume_24h_usd": 50000
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/openintel-find-token-by-ticker-dd88914a/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.openintel.agency](https://www.zero.xyz/host/api.openintel.agency/llms.txt)
