Val Town is a social website to write and deploy JavaScript.
Build APIs and schedule functions from your browser.
Readme

Requesting data from the OpenStreetMap API

The OpenStreetMap API allows both unauthenticated public reads and writes using authentication tokens. This example shows us getting the first node ever created in the project, which was last edited by owene.

1
2
3
4
5
6
7
import { fetch } from "https://esm.town/v/std/fetch";
export const openstreetmapAPIexample = (async () => {
return (await fetch("https://api.openstreetmap.org/api/0.6/node/1", {
headers: { accept: "application/json" },
})).json();
})();
October 23, 2023