GET /shopping/categories
Saage all available shopping event categories (nt general sales, tech deals, fashion events, holiday shopping). Use this to understand how shopping events are classified and to build filtered views of shopping events by category in your application.
curl https://nordapi.ee/api/v1/shopping/categories
{
"data": [
{
"description": "Regular seasonal clearance events",
"id": "seasonal",
"name": "Seasonal Sales"
},
{
"description": "Online shopping mega-events (Black Friday, Singles Day, Prime Day)",
"id": "ecommerce",
"name": "E-commerce Events"
},
{
"description": "Gift-buying occasions (Valentine's, Mother's Day, Christmas)",
"id": "gifting",
"name": "Gifting Holidays"
},
{
"description": "Brand-driven promotional days",
"id": "promotional",
"name": "Promotional Events"
},
{
"description": "Sales tied to cultural/sporting events",
"id": "event",
"name": "Event-Based"
}
],
"success": true
}