Naar de inhoud
GET /v1/meta

Service metadata

Probeer het live

10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.

Aangepaste headers (optioneel)
api.oanor.com/dolar-api

Het werkt. Haal een API-key op en gebruik hem in je project.

Verkrijg een API-sleutel

Codefragmenten

curl "https://api.oanor.com/dolar-api/v1/meta" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/dolar-api/v1/meta", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/dolar-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/dolar-api/v1/meta",
    headers={"x-oanor-key": "oanor_test_..."}
)

Voorbeeldrespons

Een echte respons van dit endpoint, vastgelegd bij de laatste health check.

{
    "data": {
        "source": "dolarapi.com (Argentine FX aggregator, live)",
        "service": "dolar-api",
        "endpoints": {
            "GET /v1/meta": "This document.",
            "GET /v1/brecha": "Each rate's premium over the official dollar (the parallel gap).",
            "GET /v1/dollar": "A single dollar type (type=blue).",
            "GET /v1/dollars": "Buy/sell for every dollar type (oficial, blue, mep, ccl, mayorista, cripto, tarjeta).",
            "GET /v1/currencies": "Other currencies vs the peso (EUR, BRL, CLP, UYU)."
        },
        "description": "Live Argentine peso (ARS) exchange rates across the country's many parallel dollar markets. Argentina runs a famous multi-rate system: alongside the official rate there is the blue (informal/parallel) dollar, the MEP/bolsa and CCL financial dollars, the wholesale (mayorista) rate, the crypto dollar and the tarjeta tourist/card dollar (with taxes). The dollars endpoint returns the buy/sell rate for every type; the dollar endpoint returns a single type; the brecha endpoint returns each rate's premium over the official dollar (the key stress indicator); the currencies endpoint returns other currencies (EUR, BRL, CLP, UYU) against the peso. Live, no key, nothing stored. Distinct from the BCRA's official-only feed and from any single-rate central-bank API — this is Argentina's full multi-rate peso/dollar picture.",
        "blue_sell_ars": 1450,
        "upstream_status": "ok",
        "oficial_sell_ars": 1455
    },
    "meta": {
        "timestamp": "2026-06-10T22:57:56.438Z",
        "request_id": "3a92d972-43fe-49e8-98c4-d366fc35761e"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}