# CryptoShark Market Snapshot

> CryptoShark Market Snapshot is a paid API for AI agents from cryptoshark.duckdns.org, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-19).

Returns current USD price, market cap, 24h volume, and 24h price change for a given cryptocurrency symbol or CoinGecko asset name

## Facts

- Endpoint: GET https://cryptoshark.duckdns.org/reports/market
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-19
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/cryptoshark-market-snapshot-fbac31b6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap__Sba3-v3hUStfnXUXhHUN

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 cryptoshark-market-snapshot-fbac31b6
```

Example prompt: What's the current price of Ethereum in USD, along with its market cap, 24-hour trading volume, and how much it's moved in the last 24 hours?

## When to prefer this

Use this endpoint when you need a quick, low-cost USD market snapshot for a single cryptocurrency — including price, market cap, volume, and 24h change — without needing historical data, OHLCV candles, or multi-asset batch queries. It accepts both ticker symbols (btc, sol) and full CoinGecko asset names (ethereum, dogecoin), making it flexible for natural-language agent pipelines.

## Known failure modes

- Unsupported or misspelled asset symbol returns an error or empty response
- Rate limiting or service downtime from the DuckDNS-hosted provider may cause intermittent failures
- CoinGecko data delays may result in slightly stale snapshots during high-traffic periods
- Ambiguous asset names (e.g. 'token') may not resolve correctly

## How this service works

Current USD market snapshot for a supported cryptocurrency symbol or CoinGecko asset name

## Output

A JSON object containing the queried asset symbol, current USD price (priceUsd), total market capitalization in USD (marketCapUsd), 24-hour trading volume in USD (volume24hUsd), and 24-hour price change as a percentage (change24hPercent).

## 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"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "asset"
     ],
     "properties": {
      "asset": {
       "type": "string",
       "description": "Asset symbol or name, such as btc, ethereum, sol, or doge"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "asset": {
       "type": "string"
      },
      "priceUsd": {
       "type": "number"
      },
      "marketCapUsd": {
       "type": "number"
      },
      "volume24hUsd": {
       "type": "number"
      },
      "change24hPercent": {
       "type": "number"
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "asset": "bitcoin",
  "priceUsd": 100000,
  "change24hPercent": 1.5
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/cryptoshark-market-snapshot-fbac31b6/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from cryptoshark.duckdns.org](https://www.zero.xyz/host/cryptoshark.duckdns.org/llms.txt)
