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": "gifting",
"countries": [
"US",
"CA",
"AU",
"NZ",
"BR",
"IN"
],
"date": "2026-05-10",
"days_until": 0,
"description": "2nd biggest gifting holiday after Christmas. Flowers, jewelry, dining, spa.",
"duration_days": 3,
"end_date": "2026-05-12",
"id": "mothers_day_us",
"impact": "high",
"is_active": true,
"name": "Mother's Day (US/CA/AU)",
"status": "active_now"
}
],
"is_shopping_holiday": true,
"success": true
}