← Weltdaten

Shopping-Kategorien

GET /shopping/categories

Rufen Sie alle verfügbaren Shopping-Event-Kategorien ab (z. B. allgemeine Verkäufe, Tech-Angebote, Mode-Events, Urlaubsshopping). Verwenden Sie dies, um zu verstehen, wie Shopping-Events klassifiziert werden, und um in Ihrer Anwendung gefilterte Ansichten von Shopping-Events nach Kategorie zu erstellen.

Beispielanfragen

Grundlegende Verwendung
curl https://nordapi.ee/api/v1/shopping/categories

Live-Antwort

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