# pagos.andreax.dev FX Quote (COP/USD to USDC)

> pagos.andreax.dev FX Quote (COP/USD to USDC) is a paid API for AI agents from pagos.andreax.dev, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-15).

Returns a spread-adjusted currency conversion quote from a source currency (e.g. COP, USD) to USDC stablecoin

## Facts

- Endpoint: GET https://pagos.andreax.dev/api/taller/peaje/fx
- 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/pagos-andreax-dev-fx-quote-cop-usd-to-usdc-6f0cdd4f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_rbdIJiLQU-cvJsg9tfZ2g

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-dev-fx-quote-cop-usd-to-usdc-6f0cdd4f
```

Example prompt: How much USDC would I get for 500,000 COP right now, including the spread?

## When to prefer this

Use this endpoint when you need a spread-inclusive stablecoin conversion quote (specifically to USDC) from a fiat currency like COP or USD, especially in Latin American payment contexts or when building crypto onramp flows that require transparent pricing

## Known failure modes

- Missing or malformed 'input' query parameter returns an error
- Unsupported source currency pair returns an error or empty result
- Network timeout if the underlying FX data source is unavailable
- Amount of zero or negative value may return an error or unexpected result

## How this service works

Cotiza una conversión de moneda hacia USDC con spread (ej. COP->USDC, USD->USDC). Úsalo para obtener tasas de cambio hacia stablecoin. input='<monto> <origen> <destino>'.

## Output

Returns a spread-adjusted quote showing how much USDC the user would receive for the specified amount of the source currency, including the exchange rate and spread applied

## 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": "Cadena '<monto> <origen> <destino>', ej. '100000 COP USDC'"
      }
     }
    }
   },
   "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-dev-fx-quote-cop-usd-to-usdc-6f0cdd4f/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)
