# LatAm P2P Data – ARS (Argentine Peso)

> LatAm P2P Data – ARS (Argentine Peso) is a paid API for AI agents from latamp2papi.dpdns.org, paid per call via x402, $0.002/call, status down (last checked 2026-09-16).

Returns real-time Binance P2P order book data for USDT/ARS (Argentine Peso), including best buy/sell prices, spread, merchant listings, and market depth.

## Facts

- Endpoint: GET https://latamp2papi.dpdns.org/p2p/ars
- Price: $0.002/call
- Payment: x402
- Status: down
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/latam-p2p-data-ars-argentine-peso-3dc48826
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_YC-9QOKPvTTWD2-AYNchr

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-ars-argentine-peso-3dc48826
```

Example prompt: What's the current Binance P2P rate to buy and sell USDT in Argentine Pesos right now? Show me both sides of the market including the best prices and spread.

## When to prefer this

Choose this endpoint when you need real-time Argentine Peso (ARS) P2P crypto exchange rates sourced directly from Binance P2P, especially for tracking parallel/blue dollar-adjacent USDT rates, remittance pricing, or arbitrage monitoring in Argentina. Prefer it over generic forex APIs when you specifically need P2P merchant-level data with bank acceptance details rather than official exchange rates.

## Known failure modes

- Binance P2P data unavailable — upstream source unreachable, returns error or stale data
- Payment failure — x402 USDC payment on Base not processed, request blocked
- Invalid 'lado' parameter value — must be 'todos', 'compra', or 'venta'
- Low market depth — few or no active merchants, resulting in sparse order book data
- Rate limiting or throttling from upstream Binance P2P scraping

## 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 (USDT/ARS), data source (Binance P2P), current timestamp, best buy price, best sell price, spread percentage, arrays of merchant offers with individual prices and accepted banks, and market 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-ars-argentine-peso-3dc48826/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)
