/v1/dataset
Fetch any OpenDOSM data-catalogue id
Live testen
10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.
Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.
API-Key holenCode-Snippets
curl "https://api.oanor.com/malaysia-stats-api/v1/dataset" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/malaysia-stats-api/v1/dataset", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/malaysia-stats-api/v1/dataset");
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$out = curl_exec($ch);
import requests
requests.get(
"https://api.oanor.com/malaysia-stats-api/v1/dataset",
headers={"x-oanor-key": "oanor_test_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"data": {
"rows": [
{
"date": "2026-04-01",
"index": 132.5,
"division": "04"
},
{
"date": "2026-04-01",
"index": 121.6,
"division": "09"
},
{
"date": "2026-04-01",
"index": 178.1,
"division": "02"
},
{
"date": "2026-04-01",
"index": 159.6,
"division": "01"
},
{
"date": "2026-04-01",
"index": 136.6,
"division": "13"
},
{
"date": "2026-04-01",
"index": 127.3,
"division": "07"
},
{
"date": "2026-04-01",
"index": 127.1,
"division": "05"
},
{
"date": "2026-04-01",
"index": 159.6,
"division": "11"
},
{
"date": "2026-04-01",
"index": 91.3,
"division": "08"
},
{
"date": "2026-04-01",
"index": 117.3,
"division": "12"
},
{
"date": "2026-04-01",
"index": 93,
"division": "03"
},
{
"date": "2026-04-01",
"index": 136.9,
"division": "overall"
},
{
"date": "2026-04-01",
"index": 132.1,
"division": "10"
},
{
"date": "2026-04-01",
"index": 133.5,
"division": "06"
},
{
"date": "2026-03-01",
"index": 133.3,
"division": "06"
},
{
"date": "2026-03-01",
"index": 132.6,
"division": "04"
},
{
"date": "2026-03-01",
"index": 121.2,
"division": "09"
},
{
"date": "2026-03-01",
"index": 159.6,
"division": "01"
},
{
"date": "2026-03-01",
"index": 93,
"division": "03"
},
{
"date": "2026-03-01",
"index": 131.9,
"division": "10"
},
{
"date": "2026-03-01",
"index": 137.6,
"division": "13"
},
{
"date": "2026-03-01",
"index": 89.9,
"division": "08"
},
{
"date": "2026-03-01",
…