# OmniAPI Crypto Portfolio Endpoint

> OmniAPI Crypto Portfolio Endpoint is a paid API for AI agents from omni-api-cyan.vercel.app, paid per call via x402, $0.017169/call, status unknown (last checked 2026-09-15).

Retrieves or analyzes a cryptocurrency portfolio by querying across multiple chains, returning aggregated portfolio data for a given address or query.

## Facts

- Endpoint: POST https://omni-api-cyan.vercel.app/api/crypto/portfolio
- Price: $0.017169/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/omniapi-crypto-portfolio-endpoint-eb6830f0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_gp9Q50l2NkLSmH3-bvOHK

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 omniapi-crypto-portfolio-endpoint-eb6830f0 -d '<json body>'
```

Example prompt: Can you pull up the full crypto portfolio for wallet address 0xABC123...def and show me all token holdings across all supported chains?

## When to prefer this

Choose this endpoint when you need to look up multi-chain crypto portfolio holdings for a wallet address in a single call, especially when paying per-call via x402/USDC is acceptable. Prefer this over single-chain block explorers when you need cross-chain aggregation without managing multiple RPC endpoints yourself.

## Known failure modes

- Invalid or malformed wallet address returns an error response
- Unsupported chain or asset may return empty or partial data
- Missing required 'query' field returns a 400-level validation error
- Payment failure via x402 (insufficient USDC) blocks the request
- Rate limiting or quota exceeded may return 402 or 429 errors
- Network congestion on queried chains may cause incomplete data

## How this service works

444 endpoints across 9+ chains. Crypto, AI, Social, Finance, Weather, Tools. Pay per call in USDC via x402 with 4 facilitators: Dexter, Meridian, FluxA, GoPlausible.

## Output

Returns aggregated portfolio data for the queried wallet or search input, likely including token names, balances, chain identifiers, and total valuations across multiple supported blockchains (9+ chains). The exact schema is generic but expected to contain crypto asset holdings and metadata.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "query"
 ],
 "properties": {
  "input": {
   "type": "string",
   "description": "Input data for the endpoint"
  },
  "query": {
   "type": "string",
   "description": "Search query or input text"
  },
  "params": {
   "type": "object",
   "description": "Additional parameters"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "description": "API response data"
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/omniapi-crypto-portfolio-endpoint-eb6830f0/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from omni-api-cyan.vercel.app](https://www.zero.xyz/host/omni-api-cyan.vercel.app/llms.txt)
