trade

Monthly trade

https://docs.economicsapi.com/endpoints/gettrademonthly
gethttps://api.economicsapi.com/v1/trade/monthly

Monthly bilateral flows, one value per exporter, importer, product and month. Filter by exporter, importer, product and period; group_by aggregates by period, exporter, importer or hs6.

curl -X GET "https://api.economicsapi.com/v1/trade/monthly" \
  -H "Authorization: Bearer sk_live_xxxxxxxxxxxxxxxxxxxx"

Authorization

Authorizationstringheaderrequired

Bearer token. API key from your economicsapi dashboard Format: `Bearer sk_live_xxxxxxxxxxxxxxxxxxxx`.

Query parameters

exporterstring | null
importerstring | null
productstring | null
fromstring | null
tostring | null
methodstring | null
group_bystring | null
limitintegerdefault 1000

min 1 · max 10000

Response

200Successful Responseapplication/json
dataMonthlyObservation[] | MonthlyGroupedPoint[]required
request_idstringdefault ""
duration_msintegerdefault 0
401Missing or invalid API keyapplication/json
errorstring
messagestring
request_idstring
422Validation Errorapplication/json
detailValidationError[]
429Rate limit exceededapplication/json
errorstring
messagestring
request_idstring
Response
{
  "data": [
    {
      "exporter": "example",
      "importer": "example",
      "hs6": "example",
      "period": "2026-01-01",
      "value_usd": 0,
      "method": "example"
    }
  ],
  "request_id": "",
  "duration_ms": 0
}