The Open Forest Watch API is freely accessible for researchers, NGOs, and government bodies. Commercial and compliance use requires an API key. All responses are JSON. The base URL is https://forestwatch.northflow.no.
Public endpoints (GET /api/reports/*) do not require authentication. The alert subscription endpoint and bulk download require an API key passed in the Authorization: Bearer <key> header.
curl https://forestwatch.northflow.no/api/reports \ -H "Authorization: Bearer ofw_live_xxxxxxxxxxxx"
pip install ofw-client
from ofw import ForestWatchClient
client = ForestWatchClient(api_key="ofw_live_xxx")
reports = client.reports.list(cause="agriculture", flag="EUDR", min_confidence=70)
report = client.reports.get("OFW-2024-AMZ-001847")