Programmatischer Zugang zu allen Swiss Retail Report Store-Daten. Integriere 300+ Store-Openings direkt in deine Applikation.
Melde dich an, um API-Keys zu verwalten.
https://www.retail-report.com/api/trpc/[endpoint]?input=JSON
// Alle Städte mit Store-Anzahl
const response = await fetch(
'https://www.retail-report.com/api/trpc/publicApi.apiGetCities?input=' +
encodeURIComponent(JSON.stringify({ apiKey: "srr_IHR_API_KEY_HIER", lang: "de" }))
);
const { result } = await response.json();
console.log(result.data.data); // Array von Städten{
"result": {
"data": {
"success": true,
"meta": { "total": 106, "limit": 50, "offset": 0, "lang": "de" },
"data": [
{
"id": "opening-zurich-1",
"name": "Zimmermann",
"location": "Bahnhofstrasse 3",
"category": "Mode",
"year": 2025,
"size": 200,
"cityId": "zurich",
"cityName": "Zürich"
}
],
"timestamp": "2026-03-07T10:00:00.000Z"
}
}
}| Data API Plan | 10'000/Monat |
| Max. pro Request | 500 Stores |
| Pagination | limit + offset |
| apiKey | string (required) |
| lang | "de" | "en" |
| city | z.B. "zurich" |
| year | z.B. 2025 |
| category | z.B. "Mode" |
| limit | 1–500 (default 100) |
| offset | Pagination offset |