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.
country
påkrevd
Country
| Navn | Påkrevd | Standard | Beskrivelse |
|---|---|---|---|
country |
Ja | - | Country |
curl "https://nordapi.ee/api/v1/shopping/check?country=US"
curl "https://nordapi.ee/api/v1/shopping/check?country=US"
curl "https://nordapi.ee/api/v1/shopping/check?country=CN"
curl "https://nordapi.ee/api/v1/shopping/check?country=GB"
{
"active_events": [
{
"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"
}
],
"country": "US",
"date": "2026-04-05",
"days_until_next": -2,
"is_shopping_holiday": true,
"next_event": {
"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"
},
"success": true
}