Skip to content
GET /v1/trade

Latest-month trade

Try it live

10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.

Custom headers (optional)
api.oanor.com/moldova-trade-api

It works. Grab an API key and use it in your project.

Get an API key

Code snippets

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

Example response

A real response from this endpoint, captured by the latest health check.

{
    "data": {
        "unit": "Million USD",
        "period": "2026-04",
        "region": "Moldova",
        "source": "National Bureau of Statistics of Moldova (statbank.statistica.md, table EXT015000)",
        "exports": 314.7,
        "imports": 1064.5,
        "indicator": "Foreign trade (latest month)",
        "month_name": "April",
        "trade_balance": -749.8,
        "cover_ratio_pct": 29.56
    },
    "meta": {
        "timestamp": "2026-06-15T20:40:28.056Z",
        "request_id": "b9984b97-c9de-4b53-b155-31e523b5eca4"
    },
    "status": "ok",
    "message": "Moldova trade retrieved",
    "success": true
}