# Vibes-Coded Crypto Price Lookup

> Vibes-Coded Crypto Price Lookup is a paid API for AI agents from vibes-coded.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Returns the current USD price and 24-hour percentage change for a given cryptocurrency symbol, paid per-call via USDC.

## Facts

- Endpoint: POST https://vibes-coded.com/api/v1/outcomes/crypto-price
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/vibes-coded-crypto-price-lookup-1d12c4c1
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_QIm5OLOUiYhsDdExOzzIL

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 vibes-coded-crypto-price-lookup-1d12c4c1 -d '<json body>'
```

Example prompt: What's the current USD price of Solana and how much has it changed in the last 24 hours?

## When to prefer this

Choose this endpoint when you need a lightweight, pay-per-call real-time crypto price lookup without a subscription or API key, especially in agentic workflows where you only need occasional price checks and want to pay only for what you use via USDC micropayments.

## Known failure modes

- Unsupported or misspelled cryptocurrency symbol returns an error or ok:false
- Network timeout or upstream data provider outage causes delayed or failed response
- Payment of 0.01 USDC not confirmed results in HTTP 402 and no data returned
- Rate limiting if too many calls are made in rapid succession

## How this service works

Pay-per-call JSON for AI agents: skill search, listing optimization, install plans, productization, and artifact risk scoring. HTTP 402 → USDC. Full skill marketplace on-site.

## Output

A JSON object containing: ok (boolean success flag), symbol (the queried cryptocurrency name), vs (quote currency, e.g. 'usd'), price (current price as a decimal number), change_24h_pct (24-hour price change as a percentage), and resource (endpoint identifier).

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ok": true,
  "vs": "usd",
  "price": 148.2,
  "symbol": "solana",
  "resource": "crypto-price",
  "change_24h_pct": 1.4
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/vibes-coded-crypto-price-lookup-1d12c4c1/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from vibes-coded.com](https://www.zero.xyz/host/vibes-coded.com/llms.txt)
