Μετάβαση στο περιεχόμενο
GET /v1/catalog

Search the StatLine catalogue by title

Δοκιμάστε το ζωντανά

10 δωρεάν κλήσεις την ημέρα — χωρίς εγγραφή, χωρίς κλειδί API. Μέσω του gateway του oanor.

Προσαρμοσμένες κεφαλίδες (προαιρετικά)
api.oanor.com/netherlands-stats-api

Δουλεύει. Πάρε ένα κλειδί API και χρησιμοποίησέ το στο έργο σου.

Λάβετε ένα κλειδί API

Αποσπάσματα κώδικα

curl "https://api.oanor.com/netherlands-stats-api/v1/catalog" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/netherlands-stats-api/v1/catalog", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/netherlands-stats-api/v1/catalog");
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/netherlands-stats-api/v1/catalog",
    headers={"x-oanor-key": "oanor_test_..."}
)

Παράδειγμα απόκρισης

Πραγματική απόκριση αυτού του endpoint, από τον τελευταίο έλεγχο υγείας.

{
    "data": {
        "count": 20,
        "query": "prijs",
        "tables": [
            {
                "title": "Productie gebouwen, prijsindex 2015=100",
                "period": "1e kwartaal 2015 - 1e kwartaal 2026",
                "updated": "2026-04-30T02:00:00",
                "frequency": "Perkwartaal",
                "identifier": "83547NED"
            },
            {
                "title": "Grond-, weg- en waterbouw (GWW); inputprijsindex 2020=100",
                "period": "januari 2020 - april 2026",
                "updated": "2026-05-29T02:00:00",
                "frequency": "Perdriemaanden",
                "identifier": "86049NED"
            },
            {
                "title": "Grond-, weg- en waterbouw (GWW); inputprijsindex 2000 = 100, vanaf 1979",
                "period": "februari 1979 - april 2026",
                "updated": "2026-05-29T02:00:00",
                "frequency": "Perdriemaanden",
                "identifier": "81139ned"
            },
            {
                "title": "Nieuwbouwwoningen; inputprijsindex bouwkosten 2021=100",
                "period": "januari 2018 - april 2026",
                "updated": "2026-05-29T02:00:00",
                "frequency": "Permaand",
                "identifier": "85728NED"
            },
            {
                "title": "Nieuwbouwwoningen; inputprijsindex bouwkosten 2000=100, vanaf 1990",
                "period": "januari 1990 - April 2026",
                "updated": "2026-05-29T02:00:00",
                "frequency": "Permaand",
                "identifier": "80444ned"
            },
            {
                "title": "Nieuwbouwwoningen; outputprijsindex bouwkosten 2021=100",
                "period": "2018 1e kwartaal - 2025 4e kwartaal",
                "updated": "2026-03-30T02:00:00",
                "frequency": "Perkwartaal",
                "identifier": "85772NED"
            },
            {
                "title": "Nieuwbouwwoningen; outputprijsindex bouwkosten 2000 = 100, vanaf 1914",
                "period": "1914 - 2025 4e kwartaal",
                "updated": "2026-03-30T02:00:00",
                "frequency": "Perkwartaal",
                "identifier": "80334ned"
            },
            {
                "title": "Bestaande koopwoningen; verkoopprijzen prijsindex 2020=100",
                "period": "januari 1995 - april 2026",
                "updated": "2026-05-22T06:30:00",
                "frequency": "Permaand",
                "identifier": "85773NED"
            },
            {
                "title": "Bestaande koopwoningen; verkoopprijzen; woningtype; prijsindex 2020=100",
                "period": "1995 kwartaal 1 - 2026 kwartaal 1",
                "updated": "2026-04-22T02:00:00",
                "frequency": "Perkwartaal",
                "identifier": "85791NED"
            },
            {
                "title": "Bestaande koopwoningen; verkoopprijzen, prijsindex 2020=100, regio",
            
…