# Aimo Cryptocurrency Coin Search

> Aimo Cryptocurrency Coin Search is a paid API for AI agents from api.aimo.xyz, paid per call via x402, $0.01/call, status down (last checked 2026-09-14).

Search and retrieve cryptocurrency coins and tokens by name, symbol, or ID, returning key metadata and identifiers.

## Facts

- Endpoint: POST https://api.aimo.xyz/api-paid/search-coins
- Price: $0.01/call
- Payment: x402
- Status: down
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/api-aimo-xyz-720f7c97
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Rh26I5EA8yzQPIjzDIW-Z

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-aimo-xyz-720f7c97 -d '<json body>'
```

Example prompt: Search for cryptocurrency coins matching 'Ethereum' and return the top 5 results with their metadata and identifiers.

## When to prefer this

Use this endpoint when you need to resolve a cryptocurrency name or symbol into a structured identifier or retrieve metadata about a coin for downstream use. Prefer this over general web search when you need structured, machine-readable coin data with consistent identifiers.

## Known failure modes

- Empty or missing query returns validation error
- Limit exceeds allowed maximum returns error
- No coins found matching query returns empty results
- Payment not included or invalid returns 402 error
- Network timeout returns 5xx error

## How this service works

Search and retrieve cryptocurrency coins and tokens by name, symbol, or ID, returning key metadata and identifiers.

## Output

Returns a list of cryptocurrency coins and tokens matching the query, including key metadata such as name, symbol, ID, and other identifiers — up to the specified limit.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "limit",
  "query"
 ],
 "properties": {
  "limit": {
   "type": "number"
  },
  "query": {
   "type": "string"
  }
 }
}
```

## More

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