Feedlake

Live city data, polled on a schedule and published as plain GeoJSON. No accounts, no API keys, no rate limit dance — just a URL.

Browse feeds

Quickstart

ArcGIS Online

Open a feed's page, copy its endpoint URL, then in Map Viewer: Add layer from URL → GeoJSON → Reference the file from the URL. Set a refresh interval and save your web map.

curl

curl https://feedlake.urbantech.info/f/<slug>/<feed-id>.geojson

geopandas

import geopandas as gpd
gdf = gpd.read_file("https://feedlake.urbantech.info/f/<slug>/<feed-id>.geojson")

DuckDB (history)

SELECT * FROM read_parquet(
  's3://<bucket>/curated/feed=<feed-id>/**/*.parquet'
);