# LatAm P2P Data – USDT/HNL (Honduran Lempira)

> LatAm P2P Data – USDT/HNL (Honduran Lempira) 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 order book data for USDT against the Honduran Lempira (HNL), including best prices, spread, and advertiser details.

## Facts

- Endpoint: GET https://latamp2papi.dpdns.org/p2p/hnl
- 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-hnl-honduran-lempira-43d470a6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_QZ5jCqgJEW4PugWMdz2O4

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-hnl-honduran-lempira-43d470a6
```

Example prompt: What's the best price to buy and sell USDT for Honduran lempiras on P2P right now? Show me both sides of the market including the spread and which banks merchants accept.

## When to prefer this

Use this endpoint when you need real-time, structured USDT/HNL peer-to-peer market data specifically from Binance P2P, including per-merchant pricing and bank availability in Honduras. Prefer over general FX APIs when P2P-specific prices (not official exchange rates) matter, such as for remittance optimization, crypto arbitrage, or informal market tracking in Honduras.

## Known failure modes

- Payment not received or insufficient USDC balance → 402 Payment Required
- Binance P2P data temporarily unavailable → 503 or empty listings
- Invalid 'lado' query parameter value → 400 Bad Request
- Network timeout fetching upstream P2P data → 504 Gateway Timeout
- No active P2P listings at time of query → empty compra_usdt or venta_usdt arrays

## 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 trading pair label (USDT/HNL), data source (Binance P2P), Unix timestamp, best buy price, best sell price, spread, and arrays of buy and sell listings each containing merchant name, price in HNL, and accepted banks. Also includes 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-hnl-honduran-lempira-43d470a6/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)
