← Weltdaten

Shopping-Feiertag prüfen

GET /shopping/check

Prüfen Sie, ob heute in einem bestimmten Land ein Shopping-Feiertag oder ein Verkaufsereignis ist. Liefert ein boolesches Ergebnis zusammen mit Ereignisdetails, falls aktiv. Nützlich zum Auslösen automatisierter Sale-Banner, zum Senden von Push-Benachrichtigungen über laufende Angebote und zum Anpassen von Preisstrategien während großer Shopping-Ereignisse wie Black Friday.

Parameter

country erforderlich

Country

Beispielanfragen

Grundlegende Verwendung
curl "https://nordapi.ee/api/v1/shopping/check?country=US"
Check US shopping holidays today
curl "https://nordapi.ee/api/v1/shopping/check?country=US"
Check Chinese shopping holidays today
curl "https://nordapi.ee/api/v1/shopping/check?country=CN"
Check UK shopping holidays today
curl "https://nordapi.ee/api/v1/shopping/check?country=GB"

Live-Antwort

{
  "active_events": [],
  "country": "US",
  "date": "2026-07-07",
  "days_until_next": 8,
  "is_shopping_holiday": false,
  "next_event": {
    "category": "ecommerce",
    "countries": [
      "GLOBAL"
    ],
    "date": "2026-07-15",
    "days_until": 8,
    "description": "Amazon's massive sale event. Competitors run parallel sales. Typically mid-July.",
    "duration_days": 2,
    "end_date": "2026-07-16",
    "id": "prime_day",
    "impact": "very_high",
    "is_active": false,
    "name": "Amazon Prime Day",
    "status": "coming_this_month"
  },
  "success": true
}