# Agent Signals — JP Crypto Price (cryptojp.com)

> Agent Signals — JP Crypto Price (cryptojp.com) 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 the current JPY price of a crypto asset aggregated across Japanese exchanges, with USD equivalent and cross-venue spread data.

## Facts

- Endpoint: GET https://cryptojp.com/v1/jp/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-jp-crypto-price-cryptojp-com-404d8671
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_W7tu5oQ3M4MeJwPEMY52P

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-jp-crypto-price-cryptojp-com-404d8671
```

Example prompt: What's the current BTC price in Japanese yen right now, including how it compares across bitflyer and coincheck?

## When to prefer this

Use this endpoint when you need real-time crypto prices denominated in JPY from Japanese exchanges (bitflyer, coincheck), or when you need USD/JPY rate alongside crypto prices for arbitrage, regulatory, or regional market-intelligence purposes. Prefer this over generic global price feeds when Japan-specific venue data or JPY pricing is required.

## Known failure modes

- Invalid or unsupported symbol returns an error (e.g. unsupported asset not listed on JPY venues)
- Payment failure via x402 if USDC balance is insufficient
- Network timeout if Japanese exchange data is momentarily unavailable
- Missing required 'symbol' query parameter returns a 400-level error

## 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: ok status, base asset symbol, USD/JPY rate, per-venue JPY prices (e.g. bitflyer, coincheck), aggregated JPY price, cross-venue spread percentage, and USD equivalent price.

## 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 (JPY-listed), e.g. BTC, ETH, XRP."
      }
     }
    }
   },
   "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",
  "usdJpy": 160.36,
  "venues": {
   "bitflyer": 10317489,
   "coincheck": 10318232
  },
  "priceJpy": 10318000,
  "jpVenueSpreadPct": 0.0072,
  "priceUsdEquivalent": 64350.1
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agent-signals-jp-crypto-price-cryptojp-com-404d8671/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)
