← Estland

Estnische Gesundheitsdaten abfragen

GET /estonian-health/query

Generischer query Endpunkt for any TEHIK health data table. Verwenden Sie den datasets Endpunkt to discover available schemas und tables.

Parameter

schema erforderlich

Schema: covid19, vaccination, or flu

table erforderlich

Table name (from datasets endpoint)

limit optional Standard: 100

Max results

offset optional Standard: 0

Offset

Beispielanfragen

Grundlegende Verwendung
curl "https://nordapi.ee/api/v1/estonian-health/query?schema=covid19&table=opendata_covid19_hospitalization&limit=5"

Live-Antwort

{
  "count": 5,
  "data": [
    {
      "AgeGroup": "10-14",
      "BedProfile": "NOT IRO",
      "HospitalizationCount": 1,
      "Id": 671,
      "ModifiedAt": "2026-02-21T10:13:31+02:00",
      "StatisticsWeek": "2026-02-02",
      "Valid": true
    },
    {
      "AgeGroup": "10-14",
      "BedProfile": "NOT IRO",
      "HospitalizationCount": 1,
      "Id": 670,
      "ModifiedAt": "2026-02-21T10:13:31+02:00",
      "StatisticsWeek": "2026-01-26",
      "Valid": true
    },
    {
      "AgeGroup": "85+",
      "BedProfile": "NOT IRO",
      "HospitalizationCount": 1,
      "Id": 668,
      "ModifiedAt": "2026-02-21T10:13:31+02:00",
      "StatisticsWeek": "2026-02-09",
      "Valid": false
    },
    {
      "AgeGroup": "85+",
      "BedProfile": "NOT IRO",
      "HospitalizationCount": 1,
      "Id": 669,
      "ModifiedAt": "2026-02-21T10:13:31+02:00",
      "StatisticsWeek": "2026-02-16",
      "Valid": false
    },
    {
      "AgeGroup": "70-74",
      "BedProfile": "NOT IRO",
      "HospitalizationCount": 1,
      "Id": 719,
      "ModifiedAt": "2025-11-06T10:14:29+02:00",
      "StatisticsWeek": "2025-10-13",
      "Valid": false
    }
  ],
  "success": true
}