# Allium Token Search

> Allium Token Search is a paid API for AI agents from agents.allium.so, paid per call via MPP or x402, $0.03/call, status unknown (last checked 2026-09-13).

Search for blockchain tokens by name or symbol to retrieve token metadata and identifiers

## Facts

- Endpoint: GET https://agents.allium.so/api/v1/developer/tokens/search
- Price: $0.03/call
- Payment: MPP, x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/allium-4c93d688
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_7I2dzMAoGbrR_-C8PFE5_

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 allium-4c93d688
```

Example prompt: Search Allium for tokens matching the symbol 'USDC' so I can get the token ID and chain details before checking its price.

## When to prefer this

Use this endpoint when you need to resolve a human-readable token name or ticker symbol into structured token metadata (IDs, chain info) before calling other Allium endpoints like price lookup or balance checks. Prefer this over the full token list endpoint when you have a specific token in mind and want a targeted search result rather than paginating through all supported tokens.

## Known failure modes

- No tokens found matching the search term — returns empty result set
- Ambiguous or very common symbol returns large number of results requiring further filtering
- Invalid or missing query parameter returns 400 error
- Payment not processed or insufficient funds returns 402 error
- Rate limiting or service unavailability returns 429 or 503 error

## How this service works

Search tokens by name or symbol

## Output

A list of tokens matching the search query, including token names, symbols, identifiers, and associated blockchain network metadata that can be used in subsequent Allium API calls for prices or balances.

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": [
  {
   "info": {
    "name": "Wrapped Ether",
    "symbol": "WETH"
   },
   "type": "evm_erc20",
   "chain": "ethereum",
   "price": 2500.5,
   "object": "token",
   "address": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2",
   "decimals": 18,
   "attributes": {
    "volume_usd_1d": 850000000,
    "total_liquidity_usd": {
     "amount": 1500000000
    }
   }
  }
 ]
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/allium-4c93d688/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agents.allium.so](https://www.zero.xyz/host/agents.allium.so/llms.txt)
