← Verdensdata

Sjekk handledag

GET /shopping/check

Sjekk om i dag er en handledag eller salgshendelse i et spesifikt land. Returnerer et boolsk resultat sammen med hendelsesdetaljer hvis aktivt. Nyttig for å utløse automatiske salgsbannere, sende push-varslinger om pågående tilbud og justere prisstrategier under store handlehendelser som Black Friday.

Parametere

country påkrevd

Country

Eksempelforespørsler

Grunnleggende bruk
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"

Livesvar

{
  "active_events": [],
  "country": "US",
  "date": "2026-05-22",
  "days_until_next": 3,
  "is_shopping_holiday": false,
  "next_event": {
    "category": "seasonal",
    "countries": [
      "US"
    ],
    "date": "2026-05-25",
    "days_until": 3,
    "description": "Kickoff of summer sales. Outdoor furniture, grills, travel, fashion.",
    "duration_days": 3,
    "end_date": "2026-05-27",
    "id": "memorial_day",
    "impact": "high",
    "is_active": false,
    "name": "Memorial Day Sales",
    "status": "coming_this_week"
  },
  "success": true
}