# DeepSearch Crypto Market Data (KRW) API

> DeepSearch Crypto Market Data (KRW) 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 KRW price, market cap, trade price, and kimchi premium for a given cryptocurrency symbol

## Facts

- Endpoint: GET https://x402.deepsearch.com/v1/context/crypto/%7Bsymbol%7D
- 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-market-data-krw-api-232f365f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_JiZW17z0t54m_M1F5g2vU

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-market-data-krw-api-232f365f
```

Example prompt: What's the current KRW price, market cap, and kimchi premium for BTC on the Korean crypto market right now?

## When to prefer this

Use this endpoint when you need real-time Korean market (KRW) cryptocurrency pricing, especially when the kimchi premium or Korean market cap data is relevant. Ideal for comparing Korean vs global crypto prices, monitoring KRW-denominated portfolios, or analyzing arbitrage opportunities specific to the Korean crypto market.

## Known failure modes

- Invalid or unsupported coin symbol returns an error or empty result
- Payment failure (insufficient USDC on Base Mainnet) prevents the query from executing
- Network timeout or service unavailability returns a 5xx error
- Symbol provided in wrong format (e.g. lowercase or with special chars) may not resolve correctly

## How this service works

Up to 10 years of financials + 3 years of daily price history for all 2,000+ KRX stocks. Pay-per-query with USDC on Base Mainnet — no subscription.

## Output

A JSON object containing the coin symbol, current trade price in KRW, percentage change rate, English name, total market cap in KRW (formatted in Korean units like 조원), and the kimchi premium (the price gap between Korean and global markets as a percentage).

## 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"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "symbol": "BTC",
  "changeRate": "0.27%",
  "tradePrice": 108781526,
  "englishName": "Bitcoin",
  "marketCapKRW": "2191조원",
  "kimchiPremium": "-1.59%"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/deepsearch-crypto-market-data-krw-api-232f365f/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)
