# CryptoIntel Price – Spot Price & 24h Stats

> CryptoIntel Price – Spot Price & 24h Stats is a paid API for AI agents from cryptointel-production.up.railway.app, paid per call via x402, $0.007/call, status unknown (last checked 2026-09-15).

Returns the current spot price and 24-hour market statistics for any cryptocurrency token by symbol

## Facts

- Endpoint: GET https://cryptointel-production.up.railway.app/price
- Price: $0.007/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/cryptointel-price-spot-price-24h-stats-ab58c546
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_U8LyMeMz-syUDed34TsB5

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 cryptointel-price-spot-price-24h-stats-ab58c546
```

Example prompt: What's the current spot price and 24-hour stats for SOL right now?

## When to prefer this

Use this endpoint when you need a quick, real-time spot price and 24h market summary for a specific cryptocurrency token by its ticker symbol. Prefer this over the full market report endpoint when you only need price data for one token and want a fast, low-cost lookup rather than a comprehensive analysis.

## Known failure modes

- Unknown or unsupported token symbol returns an error or empty data
- Missing symbol query parameter may result in a default or error response
- Downstream price feed outage causes stale or unavailable data
- Payment failure (402) if x402 micropayment is not completed
- Rate limiting if requests exceed allowed frequency

## How this service works

Agent-native crypto intelligence API — prices, signals, insider detection, on-chain due diligence, trade decisions. Pay-per-call in USDC on Base or Solana.

## Output

Returns a JSON object with ok status, fee_paid field, and a data object containing the token's current spot price and 24-hour market statistics such as price change, volume, and related metrics.

## 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": {
      "symbol": {
       "type": "string"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "ok": {
       "type": "boolean"
      },
      "data": {
       "type": "object"
      },
      "fee_paid": {
       "type": "string"
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ok": true,
  "data": {
   "symbol": "BTC",
   "price_usd": 67420.5,
   "change_24h": 2.3
  },
  "fee_paid": "0.007 USDC"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/cryptointel-price-spot-price-24h-stats-ab58c546/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from cryptointel-production.up.railway.app](https://www.zero.xyz/host/cryptointel-production.up.railway.app/llms.txt)
