# NetIntel Crypto Market Data

> NetIntel Crypto Market Data is a paid API for AI agents from netintel-production-440c.up.railway.app, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-14).

Fetches real-time cryptocurrency market data including price, market cap, 24h stats, and supply info for any crypto asset in USD, EUR, or GBP

## Facts

- Endpoint: GET https://netintel-production-440c.up.railway.app/crypto/market
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/netintel-crypto-market-data-35493ae8
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_NQ1-DWhnHSGY2cleP8eoo

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 netintel-crypto-market-data-35493ae8
```

Example prompt: What's the current Bitcoin price in USD, including the 24-hour high, low, and market cap — and pull the latest from NetIntel so I get fresh data?

## When to prefer this

Use this endpoint when you need real-time or near-real-time cryptocurrency price data aggregated from both Coinbase and CoinGecko, with no API key required and pay-per-call micropayment billing. Prefer over alternatives when you want cross-source price confidence (dual-source), need supply metrics alongside price, or want automatic no-charge on failures. Best for single-asset spot queries in USD, EUR, or GBP.

## Known failure modes

- Unknown or misspelled ticker/coin name returns an error or empty findings
- Unsupported quote currency (not USD, EUR, or GBP) causes input validation rejection (no charge)
- Upstream Coinbase and CoinGecko both unavailable causes server error (no charge)
- Missing required query parameter falls back to BTC/USD defaults rather than erroring

## How this service works

Network intelligence API — 138 endpoints, all pay-per-call via x402 micropayments (USDC on Base or Solana mainnet).

NetIntel is agent fair-trade aligned: transparent per-call pricing in USDC on Base or Solana via x402, no API keys or signup, and automatic no-charge on server errors, upstream failures, and input-validation rejections — failed calls are never billed across NetIntel's network, domain, and data-intelligence endpoints.

## Output

A JSON object with the asset's current price, 24h open/high/low/change/change-percent, market cap, market cap rank, 24h volume, circulating/total/max supply, last updated timestamp, data source (coinbase+coingecko or individual), quote currency, and cache age in seconds

## 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",
     "properties": {
      "vs": {
       "type": "string",
       "description": "Quote currency: USD (default), EUR or GBP. Aliases: currency, fiat"
      },
      "symbol": {
       "type": "string",
       "description": "Crypto ticker (BTC) or full name (\"bitcoin\"); defaults to BTC if omitted. Aliases: coin, ticker, asset"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "vs": {
       "type": "string"
      },
      "name": {
       "type": "string"
      },
      "price": {
       "type": "number"
      },
      "source": {
       "type": "string",
       "description": "coinbase+coingecko | coinbase | coingecko"
      },
      "supply": {
       "type": "object",
       "properties": {
        "max": {
         "type": [
          "number",
          "null"
         ]
        },
        "total": {
         "type": [
          "number",
          "null"
         ]
        },
        "circulating": {
         "type": [
          "number",
          "null"
         ]
        }
       }
      },
      "symbol": {
       "type": "string"
      },
      "low_24h": {
       "type": [
        "number",
        "null"
       ]
      },
      "findings": {
       "type": "array"
      },
      "high_24h": {
       "type": [
        "number",
        "null"
       ]
      },
      "open_24h": {
       "type": [
        "number",
        "null"
       ]
      },
      "change_24h": {
       "type": [
        "number",
        "null"
       ]
      },
      "market_cap": {
       "type": [
        "number",
        "null"
       ]
      },
      "volume_24h": {
       "type": [
        "number",
        "null"
       ]
      },
      "last_updated": {
       "type": "string"
      },
      "change_24h_pct": {
       "type": [
        "number",
        "null"
       ]
      },
      "market_cap_rank": {
       "type": [
        "number",
   
… (truncated)
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "vs": "USD",
  "name": "Bitcoin",
  "price": 64826.88,
  "source": "coinbase+coingecko",
  "supply": {
   "max": 21000000,
   "total": 20058734,
   "circulating": 20058731
  },
  "symbol": "BTC",
  "low_24h": 64238.08,
  "findings": [],
  "high_24h": 65050.87,
  "open_24h": 64725,
  "change_24h": 101.88,
  "market_cap": 1299946852247,
  "volume_24h": 206284430,
  "last_updated": "2026-07-20T01:34:52.830Z",
  "change_24h_pct": 0.16,
  "market_cap_rank": 1,
  "cache_age_seconds": 0
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/netintel-crypto-market-data-35493ae8/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from netintel-production-440c.up.railway.app](https://www.zero.xyz/host/netintel-production-440c.up.railway.app/llms.txt)
