# DeepSearch Crypto Real-Time Price & Coin Info API

> DeepSearch Crypto Real-Time Price & Coin Info API is a paid API for AI agents from x402.deepsearch.com, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-14).

Returns real-time cryptocurrency price in KRW with kimchi premium, change rate, daily high/low, volume, market cap, and coin profile for a given symbol

## Facts

- Endpoint: GET https://x402.deepsearch.com/v1/context/crypto/:symbol
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/deepsearch-crypto-real-time-price-coin-info-api-5b1f005e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_RtaNHiMvyMt3JHNYPZqHn

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 deepsearch-crypto-real-time-price-coin-info-api-5b1f005e
```

Example prompt: What's the current Bitcoin price in Korean Won right now, including the kimchi premium, today's high and low, and trading volume?

## When to prefer this

Use this endpoint when you need real-time Korean market (KRW-denominated) cryptocurrency data, especially when the kimchi premium or KRX-context pricing is relevant. Prefer this over generic USD-based crypto APIs when the user is asking about Korean exchange prices, kimchi premium, or needs a full coin profile alongside live market metrics.

## Known failure modes

- Invalid or unsupported coin symbol returns an error or empty result
- Payment not processed (402 response if USDC micropayment fails)
- Network timeout if the real-time data source is temporarily unavailable
- Malformed request missing the required symbol query parameter

## How this service works

Real-time crypto price + coin info ($0.1). Returns current price (KRW), change rate, kimchi premium, daily high/low, trading volume, market cap, and coin profile. Symbol: BTC, ETH, XRP, SOL, etc.

## Output

A JSON object containing the current KRW price, percentage price change, kimchi premium value, daily high and low prices, trading volume, market capitalization, and a coin profile summary for the requested cryptocurrency symbol.

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

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/deepsearch-crypto-real-time-price-coin-info-api-5b1f005e/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.deepsearch.com](https://www.zero.xyz/host/x402.deepsearch.com/llms.txt)
