# StableJack Crypto Market Data

> StableJack Crypto Market Data is a paid API for AI agents from ai.stable-jack.com, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-14).

Retrieves real-time or current crypto market data (prices, volume, market cap, etc.) for one or more assets in a specified fiat currency via StableJack's agent-ready research API.

## Facts

- Endpoint: POST https://ai.stable-jack.com/x402/tools/crypto_market_data
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/stablejack-crypto-market-data-741df7d3
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_QD02j86Uay6SNKNT07tIt

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 stablejack-crypto-market-data-741df7d3 -d '<json body>'
```

Example prompt: Pull current market data for Bitcoin, Ethereum, and Solana — prices, volume, and market cap — all quoted in USD.

## When to prefer this

Choose this endpoint when you need structured, agent-ready crypto market data (price, volume, market cap) for multiple assets in a single call, especially when operating in an agentic workflow that supports x402 micropayments. Prefer it over general-purpose price APIs when you want research-grade data from StableJack's ecosystem, or when you're already using other StableJack endpoints (insights, liquidation risk, perpetual screener) and want consistent data sourcing.

## Known failure modes

- Invalid or unrecognized asset IDs return an error or empty results for those assets
- Unsupported fiat currency code results in a validation error
- Missing required assetIds array results in a bad request error
- Payment failure (insufficient USDC or x402 payment issue) blocks the request
- Temporary upstream data provider outage may return stale or unavailable data

## How this service works

Retrieve crypto market data through StableJack's agent-ready research API.

## Output

Returns a structured market data object for each requested asset, including current price, market capitalization, 24-hour trading volume, and related market metrics denominated in the specified fiat currency.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "assetIds": {
   "type": "array",
   "items": {
    "type": "string"
   }
  },
  "fiatCurrency": {
   "type": "string"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/stablejack-crypto-market-data-741df7d3/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from ai.stable-jack.com](https://www.zero.xyz/host/ai.stable-jack.com/llms.txt)
