← World Data

Shopping Categories

GET /shopping/categories

Get all available shopping event categories (e.g., 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.

Example Requests

Basic usage
curl https://nordapi.ee/api/v1/shopping/categories

Live Response

{
  "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
}