# LatAm P2P Data – USDT/PAB (Panama)

> LatAm P2P Data – USDT/PAB (Panama) 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 listings and best prices for USDT against the Panamanian Balboa (PAB), including spread, merchant info, and order book depth.

## Facts

- Endpoint: GET https://latamp2papi.dpdns.org/p2p/pab
- 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-pab-panama-f9f8999d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_lZJKhndTbcSiu2T-1jfnY

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-pab-panama-f9f8999d
```

Example prompt: What's the best price right now to buy USDT with Panamanian Balboas on Binance P2P, and what's the current spread between buy and sell sides?

## When to prefer this

Choose this endpoint when you need real-time USDT/PAB P2P market data specifically from Binance P2P in Panama, including per-merchant listings, accepted banks, and order book depth. Prefer it over generic forex APIs when you need crypto P2P rates rather than interbank or official exchange rates, and when you want to filter by market side (buy-only, sell-only, or both).

## Known failure modes

- Payment not included or invalid x402 USDC payment on Base → 402 Payment Required
- Invalid value for 'lado' query parameter → 400 Bad Request
- Binance P2P data temporarily unavailable → 503 or empty listings
- Network timeout connecting to upstream P2P source → 504 Gateway Timeout
- No active P2P ads at the time of query → empty listings arrays with zero depth

## 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 USDT/PAB currency pair label, data source (Binance P2P), timestamp, spread value, arrays of buy and sell listings (each with price in PAB, merchant name, and accepted banks), the single best buy price, the single best sell price, and the total number of active buy and sell ads.

## 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-pab-panama-f9f8999d/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)
