# finance.toon.haus Crypto Price

> finance.toon.haus Crypto Price is a paid API for AI agents from finance.toon.haus, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-15).

Returns the current price of a cryptocurrency asset

## Facts

- Endpoint: GET https://finance.toon.haus/api/crypto/price
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/finance-toon-haus-3b93adda
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_RthiqwUdiUEG8fNqI3M9B

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 finance-toon-haus-3b93adda
```

Example prompt: What is the current price of Bitcoin right now?

## When to prefer this

Use this endpoint when you need a quick, low-cost spot price lookup for a cryptocurrency. It is ideal for lightweight agents that need to check crypto valuations without requiring a full market data subscription. Prefer it over heavier financial data APIs when a single price point is sufficient and the $0.001 per-call cost model fits your usage pattern.

## Known failure modes

- Unknown or unsupported ticker symbol returns an error or empty result
- Network timeout or service unavailability returns a 5xx error
- Missing required query parameter results in a 400 bad request
- Payment not processed (x402 flow failure) returns a 402 Payment Required

## How this service works

Crypto price

## Output

Returns the current market price for the requested cryptocurrency, likely including the asset symbol and its current USD or quote-currency value.

## 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",
     "properties": {}
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/finance-toon-haus-3b93adda/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from finance.toon.haus](https://www.zero.xyz/host/finance.toon.haus/llms.txt)
