# Crypto Prices & Market Data

> Crypto Prices & Market Data is a paid API for AI agents from agent-commerce-factory-jm.austriaeast.cloudapp.azure.com, paid per call via x402, $0.008/call, status unknown (last checked 2026-09-14).

Returns live USD prices, market cap, 24h change, volume, and high/low for one or more cryptocurrencies by coin ID or ticker symbol.

## Facts

- Endpoint: POST https://agent-commerce-factory-jm.austriaeast.cloudapp.azure.com/v1/crypto/prices
- Price: $0.008/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/crypto-prices-market-data-ff56b487
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Ek7hjkVE51ezNyKV14cov

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 crypto-prices-market-data-ff56b487 -d '<json body>'
```

Example prompt: What are the current USD prices, market caps, and 24-hour changes for bitcoin, ethereum, and solana right now?

## When to prefer this

Choose this endpoint when you need real-time, per-coin cryptocurrency price and market data including 24h statistics in a single call. It supports both CoinGecko IDs and common tickers, and can return top-N coins by market cap without specifying individual coins — ideal for trading agents, portfolio valuation, market dashboards, or crypto research workflows that need structured market data at low cost per call.

## Known failure modes

- Unrecognized coin ID or ticker returns empty or error for that entry
- Requesting more than 50 coins in a single call exceeds the schema limit
- Limit parameter exceeding 100 is rejected
- Downstream CoinGecko data unavailability may cause stale or missing prices
- Invalid vsCurrency value may return an error or default to USD

## Output

A structured response per requested coin containing current USD price, market capitalization, market cap rank, 24-hour percentage price change, 24-hour trading volume, 24-hour high and low prices, and a last-updated timestamp. If no coins are specified, returns the top coins ranked by market cap up to the requested limit.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object",
     "required": [],
     "properties": {
      "coins": {
       "type": "array",
       "items": {
        "type": "string",
        "maxLength": 50,
        "minLength": 1
       },
       "maxItems": 50,
       "description": "CoinGecko ids or common tickers (e.g. btc, eth). Empty = top coins by market cap."
      },
      "limit": {
       "type": "integer",
       "default": 10,
       "maximum": 100,
       "minimum": 1
      },
      "vsCurrency": {
       "type": "string",
       "default": "usd"
      }
     }
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "required": [
      "machine",
      "route",
      "items"
     ],
     "properties": {
      "count": {
       "type": "integer"
      },
      "items": {
       "type": "array",
       "items": {
        "type": "object",
        "properties": {
         "id": {
          "type": [
           "string",
           "null"
          ]
         },
         "name": {
          "type": [
           "string",
           "null"
          ]
         },
         "price": {
          "type": [
           "number",
           "null"
          ]
         },
         "low24h": {
          "type": [
           "number",
           "null"
          ]
         },
         "symbol": {
          "type": [
           "string",
           "null"
          ]
         },
         "high24h": {
          "type": [
           "number",
           "null"
          ]
         },
         "imageUrl": {
          "type": [
           "string",
           "null"
          ]
         },
         "marketCap": {
          "type": [
           "number",
           "null"
          ]
         },
         "volume24h": {
          "type": [
           "number",
           "null"
          ]
         },
      
… (truncated)
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/crypto-prices-market-data-ff56b487/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agent-commerce-factory-jm.austriaeast.cloudapp.azure.com](https://www.zero.xyz/host/agent-commerce-factory-jm.austriaeast.cloudapp.azure.com/llms.txt)
