OpenVan

Vanlife data: fuel prices, currency rates and travel geo info

🚆 TransportUNMONITOREDchecked 57 min ago
AUTH NONECORS AGENT HTTPS COMMERCIAL ?

OpenVan bundles road-trip data, per-country fuel prices, currency rates and geolocation, behind a cheerful keyless API. Endpoints return structured JSON with open CORS, plus a /honk test route for good measure. Aimed at RV and vanlife apps that need fuel and cost signals worldwide.

HOW IT'S SCORED ⓘ
Status badge · for your READMEshipapis health badge: — · unmonitored
Uptime history
—%90 days
—%30 days
P50 · ms
P95 · ms
operationalpartialdownno data
Live response samplecaptured by our last successful check
GET https://openvan.camp/api/fuel/prices

{
  "success": true,
  "data": {
    "AD": {
      "country_code": "AD",
      "country_name": "Andorra",
      "currency": "EUR",
      "unit": "liter",
      "prices": {
        "gasoline": 1.4994,
        "diesel": 1.4718,
        "gasoline_premium": 1.5611
      }
    }
  }
}
Call itcurl · fetch · python
curl "https://openvan.camp/api/fuel/prices"
const res = await fetch("https://openvan.camp/api/fuel/prices");
const data = await res.json();
console.log(data);
import requests

res = requests.get("https://openvan.camp/api/fuel/prices")
print(res.json())
Endpoints · 6On scheduleFULL DOCS ↗
First rollup pending — GET /fuel/prices has been probed
GET/fuel/pricesPROBED

Vanlife data: fuel prices, currency rates and travel geo info

GET/fuel

Fuel — documented GET route.

GET/fuel/1

Fuel details by ID (example: 1).

GET/fuel?limit=10

Fuel — documented GET route.

GET/fuel/search?q=test

Search by query parameters.

GET/api/map/pois?north=&south=&east=&west=&categories=campsite

Pois — documented GET route.

Machine-readable spec

We probe a documented GET and expect 2xx JSON — full uptime and health score. Export includes every documented route below.

Response-shape history

Stable. No schema drift observed since monitoring began — the response shape has not changed under our checks.

OpenVan: common questions

Is OpenVan free to use?

Yes — OpenVan is a free transport API. Free tier: Free — no auth. Whether the free tier allows commercial use is unclear — check the provider docs.

Does OpenVan need an API key?

No — OpenVan needs no API key or signup. You can call it straight away; rate limits still apply (120 req/window · 119 remaining).

Can I call OpenVan from the browser?

Yes — OpenVan returns CORS headers over HTTPS, so front-end code can fetch it directly with no backend proxy. Use the fetch snippet on this page, or hit "Run live" to try it now.

Is OpenVan up right now?

As of our last scheduled check, OpenVan is unmonitored. We re-probe it every sweep — the status badge and uptime chart above always show the latest.