Vai al contenuto
GET /v1/meta

Service metadata

Provalo dal vivo

10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.

Intestazioni personalizzate (facoltative)
api.oanor.com/p2prates-api

Funziona. Prendi una chiave API e usala nel tuo progetto.

Ottieni una chiave API

Frammenti di codice

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_..."}
)

Risposta di esempio

Una risposta reale di questo endpoint, acquisita dall'ultimo health check.

{
    "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
}