Agentic Shopping

Product Feed Voorbeeld (JSON)

Hieronder staat een voorbeeld van een product feed die voldoet aan de specificaties van het Agentic Commerce Protocol. Een correct gestructureerde feed is de eerste, cruciale stap voor een succesvolle integratie.

/downloads/feed.json
[
  {
    "id": "HW-HDPH-01-BLK",
    "title": "Aura Wireless Noise-Cancelling Headphones",
    "description": "Experience immersive audio with Aura headphones. Featuring crystal-clear sound, comfortable earcups, and a 30-hour battery life.",
    "url": "https://example.com/products/aura-headphones-black",
    "image_url": "https://example.com/images/headphones-black.jpg",
    "price": {
      "value": 249.99,
      "currency": "EUR"
    },
    "availability": "in_stock",
    "condition": "new",
    "brand": "AudioBrand",
    "gtin": "1234567890123",
    "category": "Electronics > Audio > Headphones",
    "shipping": [
      {
        "country": "NL",
        "service": "Standard Shipping",
        "price": {
          "value": 0.00,
          "currency": "EUR"
        }
      }
    ]
  },
  {
    "id": "SW-SMRTWTCH-01-GRY",
    "title": "Momentum Smartwatch Series 5",
    "description": "Stay connected and track your fitness with the Momentum Smartwatch. GPS, heart rate monitoring, and a vibrant always-on display.",
    "url": "https://example.com/products/momentum-smartwatch-grey",
    "image_url": "https://example.com/images/smartwatch-grey.jpg",
    "price": {
      "value": 399.00,
      "currency": "EUR"
    },
    "availability": "in_stock",
    "condition": "new",
    "brand": "ConnectTech",
    "gtin": "9876543210987",
    "category": "Electronics > Wearable Technology",
    "variants": [
      {
        "variant_id": "SW-SMRTWTCH-01-GRY",
        "color": "Graphite",
        "availability": "in_stock"
      },
      {
        "variant_id": "SW-SMRTWTCH-01-BLU",
        "color": "Midnight Blue",
        "availability": "out_of_stock"
      }
    ]
  }
]