# LatAm P2P Data – USDT/PYG (Guaraní)

> LatAm P2P Data – USDT/PYG (Guaraní) 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-15).

Returns real-time Binance P2P buy/sell prices for USDT against the Paraguayan Guaraní (PYG), including best prices, merchant listings, and order book depth.

## Facts

- Endpoint: GET https://latamp2papi.dpdns.org/p2p/pyg
- Price: $0.002/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-pyg-guaran-a698a9b2
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_AU5__bWV6hD3lTTydpkPm

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-pyg-guaran-a698a9b2
```

Example prompt: What's the current P2P rate for buying and selling USDT in Paraguayan Guaraníes right now — show me both sides of the market including the best prices and which banks are accepted?

## When to prefer this

Use this endpoint when you need real-time P2P crypto exchange rate data specifically for USDT vs Paraguayan Guaraní (PYG), sourced from Binance P2P with merchant-level granularity and bank payment method details. Prefer it over generic forex APIs when P2P street rates matter (e.g. remittances, arbitrage, crypto on/off-ramping in Paraguay). It is one of several sibling endpoints covering different Latin American currencies on the same platform.

## Known failure modes

- Upstream Binance P2P API unavailable — may return 502 or stale data
- Payment not processed (x402 USDC payment on Base required per call)
- Invalid 'lado' query parameter value returns 400 error
- No merchants currently active — empty arrays returned for one or both sides
- Rate limit exceeded if payment not correctly attached

## 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 label (USDT/PYG), data source (Binance P2P), Unix timestamp, best buy price, best sell price, spread percentage, arrays of merchant listings for each side with prices and accepted banks, and order book depth counts for both buy and sell 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-pyg-guaran-a698a9b2/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)
