GET /shopping/active
Check which shopping events and sales holidays are currently active right now. Returns any ongoing events with their names, start and end dates, and descriptions. Perfect for e-commerce banners that auto-display during sale events, deal aggregator apps, and marketing automation tools that trigger campaigns during active shopping periods.
country
optional
Country
| Name | Required | Default | Description |
|---|---|---|---|
country |
No | - | Country |
curl https://nordapi.ee/api/v1/shopping/active
curl https://nordapi.ee/api/v1/shopping/active
curl "https://nordapi.ee/api/v1/shopping/active?country=US"
{
"count": 1,
"data": [
{
"category": "seasonal",
"countries": [
"US",
"CA",
"GB",
"DE",
"FR"
],
"date": "2026-08-01",
"days_until": 0,
"description": "Extended shopping season. Electronics, clothing, school supplies, dorm furnishings.",
"duration_days": 45,
"end_date": "2026-09-14",
"id": "back_to_school",
"impact": "high",
"is_active": true,
"name": "Back to School",
"status": "active_now"
}
],
"is_shopping_holiday": true,
"success": true
}