# KHOTEM Asset Price Lookup

> KHOTEM Asset Price Lookup is a paid API for AI agents from khotem.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Returns current prices for specified crypto assets (ETH, USDC, DAI, LINK, SOL) via a paid micropayment endpoint

## Facts

- Endpoint: POST https://khotem.com/api/price
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/khotem-asset-price-lookup-4e7342cb
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ewNRLjyjHJaIisj4-5Egq

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 khotem-asset-price-lookup-4e7342cb -d '<json body>'
```

Example prompt: Can you get me the current prices for ethereum, solana, and chainlink from KHOTEM?

## When to prefer this

Choose this endpoint when you need a quick, no-account, no-API-key price lookup for a small set of major crypto assets (ETH, USDC, DAI, LINK, SOL) and you are already operating in an x402 micropayment environment with USDC on Base, Polygon, or Solana. It is ideal for autonomous agents that need trustless, on-chain-verifiable price data without KYC or subscription overhead.

## Known failure modes

- Invalid or unrecognized asset IDs return an error or empty result
- Payment failure (insufficient USDC balance or x402 micropayment not completed) blocks the request
- Comma-separated IDs malformed or containing unsupported tokens may return partial or error responses
- Rate limiting or network issues on the provider side may cause timeouts

## How this service works

Paid cryptographic witness services for autonomous agents and humans: seals, attestations, verification, audit, sealed document thread. x402-native micropayments, USDC on Base / Polygon / Solana, direct on-chain verification. No accounts, no API keys, no KYC.

## Output

Returns current market prices for the requested crypto assets (from the set: ethereum/eth, usdc, dai, chainlink/link, solana/sol), likely as a JSON object mapping each asset ID to its price in USD or a reference currency.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "ids": {
   "type": "string",
   "description": "Comma-separated asset ids: ethereum, usdc, dai, chainlink, solana (short: eth, usdc, dai, link, sol)"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/khotem-asset-price-lookup-4e7342cb/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from khotem.com](https://www.zero.xyz/host/khotem.com/llms.txt)
