# Atalaya API – Crypto Price Lookup

> Atalaya API – Crypto Price Lookup is a paid API for AI agents from 178.104.25.10.sslip.io, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-15).

Returns the current USD price and 24-hour percentage change for a given cryptocurrency token using its CoinGecko token ID.

## Facts

- Endpoint: GET https://178.104.25.10.sslip.io/api/precio
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/atalaya-api-crypto-price-lookup-25f55247
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_y9U2J4MmXs2KxytoKVNA4

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 atalaya-api-crypto-price-lookup-25f55247
```

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

## When to prefer this

Choose this endpoint when you need a lightweight, real-time USD price and 24h change for a specific cryptocurrency identified by its CoinGecko token ID, and you are operating in a micropayment (x402/USDC on Base) environment. It is ideal for per-call, on-demand price lookups rather than bulk historical data or order book depth.

## Known failure modes

- Invalid or unrecognized CoinGecko token ID returns an error
- Missing required 'token' query parameter results in a 400-level error
- x402 payment failure or insufficient USDC balance prevents access
- CoinGecko upstream outage may cause stale or unavailable data

## How this service works

Crypto market data and Spanish business data via x402 micropayments. USDC on Base.

## Output

A JSON object containing the token's current price in USD (e.g. 64041), the token identifier string (e.g. 'bitcoin'), and the 24-hour percentage price change (e.g. -0.23).

## 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": [
      "token"
     ],
     "properties": {
      "token": {
       "type": "string",
       "description": "CoinGecko token id like bitcoin or ethereum"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "usd": 64041,
  "token": "bitcoin",
  "change_24h": -0.23
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/atalaya-api-crypto-price-lookup-25f55247/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from 178.104.25.10.sslip.io](https://www.zero.xyz/host/178.104.25.10.sslip.io/llms.txt)
