# The Stall — Crypto to Fiat Price Lookup

> The Stall — Crypto to Fiat Price Lookup is a paid API for AI agents from the-stall.intuitek.ai, paid per call via x402, $0.059/call, status unknown (last checked 2026-09-13).

Returns the current price of a specified cryptocurrency in one or more fiat currencies (e.g. USD, EUR, JPY) using CoinGecko data, paid per-call with USDC on Base via x402.

## Facts

- Endpoint: GET https://the-stall.intuitek.ai/cap/crypto-fiat-price
- Price: $0.059/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/the-stall-crypto-to-fiat-price-lookup-f80798d7
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_EDpyIx067rkAca9qM0Mwa

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 the-stall-crypto-to-fiat-price-lookup-f80798d7
```

Example prompt: What's the current price of Ethereum in USD, EUR, and JPY right now?

## When to prefer this

Use this endpoint when you need a quick, no-account, no-API-key lookup of a cryptocurrency's current price in one or more fiat currencies, paid per-call with micro-USDC. Prefer this over direct CoinGecko API calls when you want a pay-as-you-go model without managing API keys, or when building an agent workflow on the x402 payment rail.

## Known failure modes

- Unknown coin ticker or CoinGecko ID returns a 404 or empty result
- Invalid fiat currency code returns an error or omits that currency from the response
- Network or upstream CoinGecko outage causes a 502 or timeout
- Missing required 'coin' query parameter returns a 400 validation error
- Insufficient USDC balance or failed x402 payment returns a 402 Payment Required response

## How this service works

Cryptocurrency price in any fiat currency — JPY, EUR, CNY, GBP, KRW, INR, AUD, BRL, or 80+ more. Input a coin name or CoinGecko ID (bitcoin, ethereum, solana, btc, eth, sol, etc.) and one or more currency codes. Returns current price, 24h percent change per currency, and last updated timestamp. Free upstream: CoinGecko public API (no key). 85% below specialized fiat oracles. Useful for Asian/European market agents, cross-border DeFi pricing, and multi-currency portfolio valuation.

## Output

A JSON object containing the current price of the requested cryptocurrency expressed in each of the requested fiat currencies (e.g. { 'ethereum': { 'usd': 3200.45, 'eur': 2980.12, 'jpy': 498000 } }), sourced from CoinGecko and returned in real time.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "coin": "bitcoin",
   "currencies": "usd,eur,gbp"
  }
 }
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "required": {
   "type": "string"
  },
  "properties": {
   "type": "string"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/the-stall-crypto-to-fiat-price-lookup-f80798d7/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from the-stall.intuitek.ai](https://www.zero.xyz/host/the-stall.intuitek.ai/llms.txt)
