# Agent Signals — Crypto Price Feed (cryptojp.com /v1/price)

> Agent Signals — Crypto Price Feed (cryptojp.com /v1/price) is a paid API for AI agents from cryptojp.com, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-15).

Returns real-time cross-venue price, 24h range, volume, and spread data for a given crypto asset symbol.

## Facts

- Endpoint: GET https://cryptojp.com/v1/price
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agent-signals-crypto-price-feed-cryptojp-com-v1-price-e78a2f67
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_DG6h7OFxW8yNvN-ay6VIr

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 agent-signals-crypto-price-feed-cryptojp-com-v1-price-e78a2f67
```

Example prompt: What's BTC's current price right now, including the 24h high and low, how it's changed today, and how the price compares across Binance and Bybit?

## When to prefer this

Use this endpoint when an AI trading agent needs real-time cross-venue price data for a single crypto asset, including spread analysis and 24h range context. Prefer this over generic price APIs when you need multi-venue comparison (Binance + Bybit) and range-position context in a single pay-per-call call settled in USDC via x402.

## Known failure modes

- Missing or invalid symbol parameter returns an error
- Symbol not supported returns a 404 or empty result
- Payment not settled via x402 returns a 402 Payment Required
- Upstream exchange data unavailable may return stale or partial venue data
- Network timeout from exchange aggregator may cause delayed response

## How this service works

Pay-per-call crypto market-intelligence API for autonomous AI trading agents. Funding-rate, BTC lead-lag and trend/chop regime signals, settled in USDC over x402.

## Output

A JSON object containing the asset's current mid-market price, 24h high and low, 24h percentage change, 24h volume in USD, where in its 24h range the price currently sits (rangePositionPct), cross-venue spread percentage, and individual prices from Bybit and Binance.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "symbol": "BTC"
  }
 }
}
```

## 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": [
      "symbol"
     ],
     "properties": {
      "symbol": {
       "type": "string",
       "description": "Base asset symbol, e.g. BTC, ETH, SOL."
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ok": true,
  "base": "BTC",
  "price": 65500.2,
  "low24h": 64200,
  "venues": {
   "bybit": 65498.9,
   "binance": 65500.2
  },
  "high24h": 66100,
  "change24hPct": 1.84,
  "volume24hUsd": 18500000000,
  "rangePositionPct": 68.4,
  "crossVenueSpreadPct": 0.002
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agent-signals-crypto-price-feed-cryptojp-com-v1-price-e78a2f67/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from cryptojp.com](https://www.zero.xyz/host/cryptojp.com/llms.txt)
