# LatAm P2P Data

> LatAm P2P Data 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 USDT buy/sell rates and spread from Binance P2P for Latin American currencies

## Facts

- Endpoint: GET https://latamp2papi.dpdns.org/p2p/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-2fcf0184
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_SgVDXDpu8QYx15TGLf2be

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-2fcf0184
```

Example prompt: Can you pull the latest Binance P2P rates for USDT against Mexican pesos, Argentine pesos, and Nicaraguan córdobas, including the best buy and sell prices and the spread for each?

## When to prefer this

Choose this endpoint when you need real-time P2P market rates for USDT against Latin American fiat currencies (NIO, MXN, ARS, COP, etc.) sourced from Binance P2P. It is ideal for remittance analysis, arbitrage detection, crypto-to-fiat conversion rate monitoring, or any fintech workflow requiring live unofficial exchange rates in LatAm markets. Prefer this over official FX rate APIs when you specifically need P2P market prices rather than interbank or official rates.

## Known failure modes

- Payment not included or insufficient USDC on Base network — returns HTTP 402 Payment Required
- Invalid currency code in 'monedas' parameter — may return empty result or error
- Binance P2P data temporarily unavailable — upstream data may be stale or endpoint may return an error
- Network timeout if upstream P2P source is slow
- Unsupported currency requested — not all LatAm currencies may be covered

## 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 keyed by currency code, with each entry containing the country name, best USDT buy price, best USDT sell price, and spread percentage — sourced from Binance P2P and timestamped at time of query. Supports filtering to specific currencies via the 'monedas' query parameter, or returns all available LatAm currencies if omitted.

## 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-2fcf0184/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)
