# LatAm P2P Data – USDT vs Latin American Currencies

> LatAm P2P Data – USDT vs Latin American Currencies is a paid API for AI agents from latamp2papi.dpdns.org, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Returns real-time Binance P2P exchange rates and spreads for USDT against Latin American fiat currencies, paid per-query via x402 micropayments.

## Facts

- Endpoint: GET https://latamp2papi.dpdns.org/fx/latam
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/latam-p2p-data-usdt-vs-latin-american-currencies-1e331bc8
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_wCu3Sfmb_8xkAYZpa5SGZ

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 latam-p2p-data-usdt-vs-latin-american-currencies-1e331bc8
```

Example prompt: What's the current P2P rate to buy and sell USDT in Mexico and Argentina right now — show me the best prices and the spread for both?

## When to prefer this

Choose this endpoint when you need real-time, per-currency P2P USDT exchange rates specifically for Latin American fiat currencies sourced from Binance P2P. It is ideal for remittance optimization, crypto arbitrage monitoring, or building LatAm-focused FX dashboards. Prefer it over generic FX APIs when P2P market rates (not spot/CEX rates) and spread data are what matter, and when per-query micropayment billing via x402 is acceptable.

## Known failure modes

- Missing or invalid 'monedas' values may return empty or partial results
- Payment failure via x402 (insufficient USDC balance or network issues) returns 402 Payment Required
- Binance P2P data unavailability may cause stale or missing rates
- Unsupported currency codes silently omitted from response
- Service downtime on dpdns.org dynamic DNS may cause intermittent 502/503 errors

## How this service works

Datos P2P en tiempo real de USDT contra monedas latinoamericanas. Pago por consulta via x402 (USDC en Base).

## Output

A JSON object containing per-currency data keyed by currency code (e.g. MXN, ARS, NIO), each with country name, best USDT buy price, best USDT sell price, spread value, plus a source field ('Binance P2P') and a Unix timestamp. Optionally filtered to requested currencies via the 'monedas' query parameter.

## 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",
     "properties": {
      "monedas": {
       "type": "string",
       "description": "Lista separada por comas, ej 'NIO,MXN,ARS'. Vacio = todas"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "fuente": "Binance P2P",
  "monedas": {
   "NIO": {
    "pais": "Nicaragua",
    "spread": 0.6,
    "mejor_venta_usdt": 36.5,
    "mejor_compra_usdt": 37.1
   }
  },
  "timestamp": 1760000000
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/latam-p2p-data-usdt-vs-latin-american-currencies-1e331bc8/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from latamp2papi.dpdns.org](https://www.zero.xyz/host/latamp2papi.dpdns.org/llms.txt)
