# CRYPTYX Asset Liquidity

> CRYPTYX Asset Liquidity is a paid API for AI agents from cryptyx.ai, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Returns order book depth metrics (bid and ask depth at 100bps) for a specified digital asset, providing a liquidity snapshot for trading intelligence.

## Facts

- Endpoint: GET https://cryptyx.ai/api/asset-liquidity
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/cryptyx-asset-liquidity-c2e0e537
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_xI0ktxjUZmzRxpc6k59vs

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 cryptyx-asset-liquidity-c2e0e537
```

Example prompt: What's the current liquidity depth for BTC — specifically the bid and ask depth within 100 basis points — so I can gauge how easily I can execute a large trade without moving the market?

## When to prefer this

Use this endpoint when you need real-time order book depth data for a specific digital asset to assess market liquidity, estimate slippage, or support trading decisions. Prefer this over general price endpoints when depth and liquidity — not just price — are the critical signal.

## Known failure modes

- Unknown or unsupported asset symbol returns empty or error response
- Rate limiting if called too frequently without payment
- Asset with very low liquidity may return near-zero depth values
- Stale data if upstream exchange feeds are delayed
- Invalid asset format (e.g. lowercase or full name instead of ticker) may return no results

## How this service works

Continuously compounding intelligence across hundreds of metrics, signals, and digital assets. Clarity in chaos — built for elite operators and the agents that serve them.

## Output

Returns an array of liquidity objects for the requested asset, including ask_depth_100bp and bid_depth_100bp values in USD, representing the volume available within 100 basis points of the mid price on each side of the order book.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "asset": {
   "type": "string",
   "description": "Asset symbol (e.g. BTC, ETH, SOL)"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "liquidity": [
  {
   "asset": "BTC",
   "ask_depth_100bp": 11800000,
   "bid_depth_100bp": 12500000
  }
 ]
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/cryptyx-asset-liquidity-c2e0e537/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from cryptyx.ai](https://www.zero.xyz/host/cryptyx.ai/llms.txt)
