# MakeMoneyBot Crypto Price Lookup

> MakeMoneyBot Crypto Price Lookup is a paid API for AI agents from x402-api-rvva2a.openpouch.sh, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-15).

Returns the current spot price and 24-hour change percentage for a cryptocurrency asset via CoinGecko, paid per-call via x402.

## Facts

- Endpoint: GET https://x402-api-rvva2a.openpouch.sh/v1/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/makemoneybot-crypto-price-lookup-597cee0d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_PElondkqX-bd_M-Kic8hE

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 makemoneybot-crypto-price-lookup-597cee0d
```

Example prompt: What's the current price of Bitcoin in USD, including its 24-hour change?

## When to prefer this

Choose this endpoint when you need a lightweight, pay-per-call real-time crypto price lookup sourced from CoinGecko at minimal cost ($0.001 USDC per call). It is ideal for single-asset spot price queries in agentic workflows where a full exchange API integration is overkill and CoinGecko coverage is sufficient.

## Known failure modes

- Invalid or unknown CoinGecko asset id returns an error response
- Unsupported quote currency may result in a missing or null price
- x402 payment failure if wallet lacks sufficient USDC balance
- Rate limiting or CoinGecko upstream outage may cause delayed or failed responses
- Missing required 'id' query parameter returns a 400-level error

## How this service works

x402-paid Demand Radar + money briefs + hash. Free: /v1/sample-brief, /v1/demand-radar-sample. Demand Radar GET/POST /v1/demand-radar ≥$0.25 USDC. Pack ≥$1 USDC on Base.

## Output

A JSON object containing the asset's CoinGecko id, the quote currency, the current spot price as a float, the data source ('coingecko'), and the 24-hour percentage price change.

## 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",
     "required": [
      "id"
     ],
     "properties": {
      "id": {
       "type": "string",
       "description": "CoinGecko asset id (bitcoin, ethereum, solana, usd-coin, ...)"
      },
      "vs": {
       "type": "string",
       "description": "Quote currency (default usd)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "id": "bitcoin",
  "vs": "usd",
  "price": 95000.12,
  "source": "coingecko",
  "change_24h_pct": 1.23
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/makemoneybot-crypto-price-lookup-597cee0d/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402-api-rvva2a.openpouch.sh](https://www.zero.xyz/host/x402-api-rvva2a.openpouch.sh/llms.txt)
