LOCALINAR
Open Data API · v1 · Free · No Key Required

Localinar Data API

Machine-readable JSON for everything Localinar shows on the map: institutions, events, elections, public funding, rent prices, and police reports for Tübingen and Freiburg. Free. CORS-enabled. No API key.

1.858
Institutions
46
Events
218
Funding Flows
2
Cities
Status: This is a v1 read-only API serving the same JSON files that power the Localinar website. No authentication, no rate limits, no registration. If you build something with this data, email us — we'd love to hear what you're making and what would make the API more useful.

Quick Start

All endpoints return JSON. All URLs are relative to https://localinar.com.

# Get list of available cities
curl https://localinar.com/api/v1/cities.json

# Get all 504 entities (restaurants, cafes, venues, institutions) in Tubingen
curl https://localinar.com/tuebingen/api/entities.json

# Get 2026 state election results for Freiburg, by district
curl https://localinar.com/freiburg/api/elections.json

# Get all 25 annual events in Tubingen with budgets and dates
curl https://localinar.com/tuebingen/api/events.json

JavaScript example

const res = await fetch('https://localinar.com/tuebingen/api/entities.json');
const data = await res.json();
console.log(`${data.count} entities in Tübingen`);
// Filter to restaurants only
const restaurants = data.data.filter(e => e.cat === 'Food & Hospitality');

Python example

import requests
data = requests.get('https://localinar.com/freiburg/api/elections.json').json()
print(data['data']['freiburg']['parties'])
# {'GRÜNE': {'pct': 48.7}, 'CDU': {'pct': 18.3}, ...}

Available Cities

Tübingen

Baden-Württemberg, Germany · 92.000 Einwohner
  • 504 Institutions · 25 Events
  • 174 Funding Flows · 18 Police Reports
  • Elections · Rent · Insights · Bicycle Infrastructure
  • → View on map

Freiburg im Breisgau

Baden-Württemberg, Germany · 236.000 Einwohner
  • 1.354 Institutions · 21 Events
  • 44 Funding Flows · 45 Police Reports
  • Elections · Rent · Insights
  • → View on map

Endpoints

Every city exposes the same endpoint structure under /[city]/api/[dataset].json.

EndpointDescriptionSample
entities.jsonInstitutions, businesses, venuesTübingen · Freiburg
events.jsonAnnual events with dates & budgetsTübingen · Freiburg
elections.jsonLandtagswahl 2026 results by districtTübingen · Freiburg
funding.jsonPublic money flows, sources, amountsTübingen · Freiburg
rent.jsonAverage rent per district (€/m²)Tübingen · Freiburg
police.jsonRecent police reports, geocodedTübingen · Freiburg
insights.jsonGaps, outliers, patterns (manual)Tübingen · Freiburg
bicycle.jsonBicycle infrastructure (Tübingen only)Tübingen
housing.jsonBuilding permits, housing projectsTübingen
network.jsonInstitutional networks (Tübingen only)Tübingen
people.jsonPolitical actors & roles (Tübingen only)Tübingen

CORS & Licensing

CORS: All endpoints send Access-Control-Allow-Origin: *. You can fetch directly from any browser without a proxy.

License: The data is aggregated from multiple sources with different licenses:

When using this data, please attribute: Data from localinar.com · OpenStreetMap contributors · Statistisches Landesamt BW

What's Missing?

This is a raw data API. It does not currently support:

If you need any of these, tell us what you're building. The API will evolve based on real usage.