← Weltdaten

Aktive Shopping-Events

GET /shopping/active

Prüfen Sie, welche Shopping-Ereignisse und Verkaufsfeiertage derzeit aktiv sind. Liefert alle laufenden Ereignisse mit ihren Namen, Anfangs- und Enddaten sowie Beschreibungen. Perfekt für E-Commerce-Banner, die sich während Verkaufsereignissen automatisch anzeigen, Deal-Aggregator-Apps und Marketing-Automatisierungstools, die Kampagnen während aktiver Einkaufsperioden auslösen.

Parameter

country optional

Country

Beispielanfragen

Grundlegende Verwendung
curl https://nordapi.ee/api/v1/shopping/active
Active shopping events worldwide
curl https://nordapi.ee/api/v1/shopping/active
Active shopping events in the US
curl "https://nordapi.ee/api/v1/shopping/active?country=US"

Live-Antwort

{
  "count": 2,
  "data": [
    {
      "category": "gifting",
      "countries": [
        "US",
        "CA",
        "GB",
        "FR",
        "IN",
        "JP"
      ],
      "date": "2026-06-21",
      "days_until": 2,
      "description": "Electronics, tools, clothing, sports equipment gifting.",
      "duration_days": 3,
      "end_date": "2026-06-23",
      "id": "fathers_day",
      "impact": "medium",
      "is_active": false,
      "name": "Father's Day",
      "status": "coming_this_week"
    },
    {
      "category": "seasonal",
      "countries": [
        "SE",
        "FI",
        "NO",
        "DK",
        "EE"
      ],
      "date": "2026-06-26",
      "days_until": 7,
      "description": "Nordic midsummer celebration. Outdoor, food, beverage, party supplies.",
      "duration_days": 3,
      "end_date": "2026-06-28",
      "id": "midsummer_sales",
      "impact": "medium",
      "is_active": false,
      "name": "Midsummer Sales",
      "status": "coming_this_week"
    }
  ],
  "is_shopping_holiday": true,
  "success": true
}