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": [
"GLOBAL"
],
"date": "2026-04-03",
"days_until": 0,
"description": "Spring sales event. Fashion, home & garden, chocolate/confectionery.",
"duration_days": 4,
"end_date": "2026-04-06",
"id": "easter_sales",
"impact": "high",
"is_active": true,
"name": "Easter Sales",
"status": "active_now"
}
],
"is_shopping_holiday": true,
"success": true
}