# AIMO Crypto Asset Info

> AIMO Crypto Asset Info 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-15).

Returns detailed identifiers, metadata, and real-time market statistics for a specified cryptocurrency asset by symbol.

## Facts

- Endpoint: POST https://api.aimo.xyz/api-paid/get-crypto-asset-info
- Price: $0.01/call
- Payment: x402
- Status: down
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/api-aimo-xyz-acfd5092
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_cJAtMF8D6pSMdPNkChJtL

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-acfd5092 -d '<json body>'
```

Example prompt: Can you pull up the full asset info for ETH, including all metadata like identifiers and market statistics?

## When to prefer this

Use this endpoint when you need comprehensive, structured detail about a single cryptocurrency asset — including both on-chain identifiers and live market statistics — in a single call. Prefer this over a search endpoint when you already know the exact symbol and need full asset metadata rather than a list of candidates.

## Known failure modes

- Unknown or unsupported symbol returns an error or empty result
- Missing required 'symbol' field returns a validation error
- Invalid 'include_metadata' type (non-boolean) causes a bad request error
- Payment failure via x402 protocol prevents access
- Upstream market data source unavailable causes timeout or stale data

## How this service works

Provides detailed information about a cryptocurrency asset, including identifiers, metadata, and market statistics.

## Output

A structured object containing the cryptocurrency asset's identifiers (e.g. IDs across platforms), metadata (name, symbol, description, logo), and market statistics (price, market cap, volume, supply) for the requested symbol.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "symbol",
  "include_metadata"
 ],
 "properties": {
  "symbol": {
   "type": "string"
  },
  "include_metadata": {
   "type": "boolean"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/api-aimo-xyz-acfd5092/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)
