# LatAm P2P Data – USDT/CLP

> LatAm P2P Data – USDT/CLP 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 order book data for USDT against the Chilean Peso (CLP), including buy/sell prices, best rates, spread, and advertiser depth.

## Facts

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

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-clp-c86425d3
```

Example prompt: What's the best price right now to buy USDT with Chilean pesos on Binance P2P — show me both the buy and sell sides including spread and which banks are accepted.

## When to prefer this

Choose this endpoint when you specifically need real-time USDT/CLP peer-to-peer exchange data from Binance P2P, including merchant-level pricing, accepted banks, and order book depth. Prefer it over generic FX APIs when P2P market rates (which often differ from spot) matter, or when you need to know which payment methods Chilean traders accept. It is pay-per-query via x402/USDC, making it suitable for on-demand spot checks rather than high-frequency polling.

## Known failure modes

- Binance P2P API unavailable — upstream data source down, may return 502 or stale data
- Payment not fulfilled — x402 payment in USDC on Base required before data is returned; missing or invalid payment yields 402 response
- Invalid query parameter value for 'lado' — must be 'todos', 'compra', or 'venta'
- No active P2P ads — thin market conditions may result in empty arrays for one or both sides

## 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 the currency pair label (USDT/CLP), data source (Binance P2P), a Unix timestamp, best buy and sell prices, the spread percentage, arrays of buy and sell advertiser listings (each with price, accepted banks, and merchant name), 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-clp-c86425d3/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)
