Ir al contenido
GET /v1/meta

Service metadata

Pruébalo en vivo

10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.

Encabezados personalizados (opcional)
api.oanor.com/p2prates-api

Funciona. Consigue una clave API y úsala en tu proyecto.

Obtener una clave API

Fragmentos de código

curl "https://api.oanor.com/p2prates-api/v1/meta" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/p2prates-api/v1/meta", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/p2prates-api/v1/meta");
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$out = curl_exec($ch);
import requests
requests.get(
    "https://api.oanor.com/p2prates-api/v1/meta",
    headers={"x-oanor-key": "oanor_test_..."}
)

Respuesta de ejemplo

Una respuesta real de este endpoint, capturada en la última comprobación de estado.

{
    "data": {
        "source": "Binance P2P (p2p.binance.com, live)",
        "service": "p2prates-api",
        "endpoints": {
            "GET /v1/ads": "Live P2P advertisements — price, limits, merchant, payment methods (fiat=ARS, type=buy, asset=USDT).",
            "GET /v1/meta": "This document.",
            "GET /v1/rate": "Best buy/sell P2P price, mid and spread for an asset in a fiat (fiat=ARS, asset=USDT).",
            "GET /v1/fiats": "Supported fiat currencies and assets."
        },
        "description": "Live crypto peer-to-peer street rates from the Binance P2P marketplace. On P2P, people buy and sell USDT (a USD proxy) directly for local currency, so the advertised prices reveal the real street value of a currency — for stressed currencies (Argentine peso, Venezuelan bolívar, Nigerian naira …) this is the rate the economy actually transacts at, far from the official one. The rate endpoint returns the best buy and sell P2P price for an asset in a fiat, the mid and the spread; the ads endpoint returns the live order book of P2P advertisements (price, available amount, order limits, merchant reputation, payment methods); the fiats endpoint lists supported currencies. Live, no key, nothing stored. Distinct from official FX feeds and from crypto-arbitrage-implied rates — this is the crypto-P2P street-rate and merchant-ad layer.",
        "usdt_ars_mid": 1498.5,
        "upstream_status": "ok"
    },
    "meta": {
        "timestamp": "2026-06-10T22:56:56.342Z",
        "request_id": "f1b7d44a-d281-4807-8ba6-dec70c7963c4"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}