# Pagos AndreaX Crypto Price (Live USD & COP)

> Pagos AndreaX Crypto Price (Live USD & COP) is a paid API for AI agents from pagos.andreax.dev, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-14).

Returns the live price of a cryptocurrency in USD and COP along with its 24-hour change, sourced from real market data.

## Facts

- Endpoint: GET https://pagos.andreax.dev/api/taller/peaje/precio-cripto
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/pagos-andreax-crypto-price-live-usd-cop-0e045ded
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_lheoPMSKN2JQOPz_ySxnm

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 pagos-andreax-crypto-price-live-usd-cop-0e045ded
```

Example prompt: What's the live price of Bitcoin right now in both USD and Colombian pesos, and how much has it changed in the last 24 hours?

## When to prefer this

Choose this endpoint when you need real-time cryptocurrency prices denominated in both USD and Colombian pesos (COP) — especially useful for Latin American fintech, payment verification, or portfolio apps that need dual-currency display. It is optimized for high-volume agent usage and provides 24h change data alongside the spot price in a single call.

## Known failure modes

- Unknown symbol or id returns an error (e.g. if an invalid token symbol is passed)
- Network or upstream market data provider unavailability may return a 5xx error
- Missing required 'input' query parameter returns a validation error
- Stale or delayed data if upstream feed has latency issues

## How this service works

Devuelve el precio EN VIVO de una criptomoneda en USD y COP con su cambio de 24h (dato real de mercado). Alto volumen para agentes que necesitan precios. input=símbolo o id (btc, eth, sol, usdc...).

## Output

Returns the cryptocurrency's live market price in USD and Colombian pesos (COP), along with the percentage or absolute change over the last 24 hours, sourced from real market data.

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "input"
     ],
     "properties": {
      "input": {
       "type": "string",
       "description": "Símbolo o id de la moneda (btc, eth, sol...)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/pagos-andreax-crypto-price-live-usd-cop-0e045ded/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from pagos.andreax.dev](https://www.zero.xyz/host/pagos.andreax.dev/llms.txt)
