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": 2,
"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"
},
{
"category": "seasonal",
"countries": [
"US",
"CA"
],
"date": "2026-09-07",
"days_until": 4,
"description": "End of summer clearance. Major appliance, mattress, and outdoor furniture sales.",
"duration_days": 3,
"end_date": "2026-09-09",
"id": "labor_day",
"impact": "high",
"is_active": false,
"name": "Labor Day Sales",
"status": "coming_this_week"
}
],
"is_shopping_holiday": true,
"success": true
}