Help travelers plan overland routes by showing border crossing options.
Travelers planning overland trips need to know which countries they can reach from their current location. Manual research is time-consuming.
Show all bordering countries for any location. Enable travelers to plan multi-country routes with accurate border crossing information.
const res = await fetch("https://api.apiverve.com/v1/countryborders?country=CA", {
headers: { "x-api-key": "YOUR_API_KEY" },
});
const { data } = await res.json();
console.log(data);