# Atalaya API – Crypto Market Data Lookup

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

Returns real-time crypto market data (price, market cap, volume, 7-day/24h change, fear & greed index) for a given CoinGecko token ID, paid via x402 USDC micropayment on Base.

## Facts

- Endpoint: GET https://178.104.25.10.sslip.io/api/informe
- Price: $0.5/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/atalaya-api-crypto-market-data-lookup-5c71de71
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_izaezrKOvzvHT0c4UNEm4

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-market-data-lookup-5c71de71
```

Example prompt: What's the current price, market cap, and 7-day performance of Bitcoin right now? Also include the fear and greed index.

## When to prefer this

Choose this endpoint when you need a quick, pay-per-call crypto market data lookup without a subscription API key, especially when operating within an x402 micropayment-enabled agent stack using USDC on Base. Ideal for one-off queries or low-frequency monitoring where a persistent subscription would be overkill.

## Known failure modes

- Invalid or unrecognized CoinGecko token ID returns an error or empty response
- Payment failure (insufficient USDC balance or x402 protocol issue) blocks the request
- Rate limiting or upstream CoinGecko API downtime may cause timeouts
- Bare IP hostname with sslip.io domain may trigger TLS or trust warnings in some HTTP clients

## 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 USD price, name, CoinGecko token ID, global market rank, 24-hour and 7-day percentage price changes, 24-hour trading volume, total market capitalization, and the current crypto fear & greed index (numeric value and label such as 'Fear' or 'Greed').

## 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"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "usd": 64041,
  "name": "Bitcoin",
  "rank": 1,
  "token": "bitcoin",
  "change_7d": 0.12,
  "change_24h": -0.23,
  "fear_greed": {
   "label": "Fear",
   "value": "44"
  },
  "market_cap": 1284506646213,
  "volume_24h": 18000000000
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/atalaya-api-crypto-market-data-lookup-5c71de71/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)
