# LatAm P2P Data – USDT/MXN

> LatAm P2P Data – USDT/MXN is a paid API for AI agents from latamp2papi.dpdns.org, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-14).

Returns real-time Binance P2P buy/sell prices and order-book depth for USDT against Mexican Peso (MXN), paid per-query via x402.

## Facts

- Endpoint: GET https://latamp2papi.dpdns.org/p2p/mxn
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/latam-p2p-data-usdt-mxn-ba18379c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_BcAjtjjVjdKJCMSWAEzHH

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-mxn-ba18379c
```

Example prompt: What's the best price to buy and sell USDT with Mexican pesos on Binance P2P right now, and how wide is the spread? Show me both sides of the market.

## When to prefer this

Use this endpoint when you need live, per-query USDT/MXN P2P pricing data from Binance without a subscription — ideal for bots, arbitrage monitors, or remittance tools that need real-time Mexican peso rates and merchant-level detail including accepted banks. Prefer over exchange REST APIs when you specifically need Binance P2P (not spot) pricing in MXN.

## Known failure modes

- Payment not received or insufficient USDC balance — 402 Payment Required with no data returned
- Invalid 'lado' enum value — likely returns 400 Bad Request
- Binance P2P upstream unavailable — may return 502 or stale data
- Rate limit exceeded — may return 429 if too many rapid queries
- Empty ad lists if Binance P2P has no active MXN merchants at query time

## How this service works

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

## Output

Returns a JSON object with the currency pair (USDT/MXN), data source (Binance P2P), Unix timestamp, best buy and sell prices in MXN, a calculated spread, lists of buy and sell merchant ads (each with merchant name, price in MXN, and accepted banks), and ad depth counts for both sides.

## 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": {
      "lado": {
       "enum": [
        "todos",
        "compra",
        "venta"
       ],
       "type": "string",
       "description": "Lado del mercado a devolver (default: todos)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "par": "USDT/NIO",
  "fuente": "Binance P2P",
  "spread": 0.6,
  "timestamp": 1760000000,
  "venta_usdt": [
   {
    "bancos": [
     "Banpro"
    ],
    "precio_nio": 37.1,
    "comerciante": "..."
   }
  ],
  "compra_usdt": [
   {
    "bancos": [
     "BAC"
    ],
    "precio_nio": 36.5,
    "comerciante": "..."
   }
  ],
  "mejor_venta_usdt": 36.5,
  "mejor_compra_usdt": 37.1,
  "profundidad_anuncios": {
   "venta_usdt": 10,
   "compra_usdt": 10
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/latam-p2p-data-usdt-mxn-ba18379c/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)
