API-Key im Header mitschicken, entweder als X-API-Key oder als Authorization: Bearer <key>. Einen Key erstellen Sie im Entwickler-Dashboard (Anmeldung per Magic Link, kein Passwort).
| Tier | Limit/Tag | Zugriff |
|---|---|---|
| Public | 100 | 1 Adresse/Anfrage, nur Gesamtscore |
| Developer | 1.000 | bis zu 20 Adressen/Anfrage, alle Dimensionen |
| Enterprise | 10.000 | wie Developer, plus Rohdaten/Bulk-Export (in Entwicklung), SLA |
Self-Service-Registrierung erstellt Public-Tier-Keys. Für Developer/Enterprise (Pay-per-Call bzw. Abo, SLA) kontaktieren Sie uns direkt — kein Self-Service-Upgrade.
Beispielanfrage (Public Tier):
curl -X POST https://lagepuls.de/api/v1/scores \
-H "X-API-Key: imk_..." \
-H "Content-Type: application/json" \
-d '{"addresses": ["Alexanderplatz 1, Berlin"]}'Beispielantwort:
{
"tier": "public",
"results": [
{
"address": "Alexanderplatz 1, Berlin",
"status": "ok",
"bezirk": "Mitte",
"overall": {
"score": 57,
"ampel": "gelb",
"dimensionsIncluded": 6,
"dimensionsTotal": 6
}
}
]
}