# LatAm P2P Data – USDT/CRC (Costa Rican Colón)

> LatAm P2P Data – USDT/CRC (Costa Rican Colón) 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 Costa Rican Colón (CRC), including merchant details, bank methods, spread, and market depth.

## Facts

- Endpoint: GET https://latamp2papi.dpdns.org/p2p/crc
- 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-crc-costa-rican-col-n-0fe65ce0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_fSnoFx1X5hTYC6LOifDSj

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-crc-costa-rican-col-n-0fe65ce0
```

Example prompt: What are the current best buy and sell prices for USDT against Costa Rican Colón on P2P markets? Show me both sides of the market.

## When to prefer this

Use this endpoint when you specifically need real-time USDT/CRC (Costa Rican Colón) P2P pricing data sourced from Binance P2P, including merchant-level detail and accepted payment banks. Prefer this over general FX APIs when you need P2P street-rate pricing rather than official or spot exchange rates, or when you need to know which banks are accepted. Choose sibling endpoints for other LatAm currencies (NIO, ARS, etc.).

## Known failure modes

- Upstream Binance P2P data unavailable — may return empty listings or error
- Payment not processed via x402 — returns 402 Payment Required
- Invalid 'lado' query parameter value — likely ignored or returns all sides
- No active P2P merchants at query time — empty listings arrays
- Network timeout from upstream scrape — stale or missing data

## 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/CRC pair name, data source (Binance P2P), timestamp, best buy price, best sell price, spread, individual buy and sell merchant listings (with price, merchant name, and accepted banks), and order book depth counts for each side.

## 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-crc-costa-rican-col-n-0fe65ce0/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)
