npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

n8n-nodes-bol-com

v1.0.0

Published

n8n node for Bol.com Partner API integration with affiliate marketing support

Downloads

11

Readme

n8n-nodes-bol-com

Bol.com n8n License

Een n8n community node voor integratie met de Bol.com Partner API, speciaal ontworpen voor affiliate marketing en productgegevens.

Functies

  • Product Details: Haal gedetailleerde productinformatie op via EAN of product ID
  • Product Zoeken: Zoek naar producten met keywords en filters
  • Affiliate Marketing: Volledig compatibel met Bol.com Partner programma
  • Nederlandse Marktplaats: Geoptimaliseerd voor de Nederlandse e-commerce markt

Installatie

Via n8n Community Nodes

  1. Ga naar Settings > Community Nodes in je n8n installatie
  2. Klik op Install a community node
  3. Voer n8n-nodes-bol-com in
  4. Klik op Install

Handmatige Installatie

# In je n8n installatie directory
npm install n8n-nodes-bol-com

Configuratie

Bol.com Partner API Credentials

Om deze node te gebruiken heb je Bol.com Partner API credentials nodig:

  1. Registreer je bij het Bol.com Partner Programma
  2. Verkrijg je Client ID en Client Secret
  3. Configureer de credentials in n8n:
    • Client ID: Je Bol.com Partner API Client ID
    • Client Secret: Je Bol.com Partner API Client Secret
    • Environment: Kies tussen Test en Production

Gebruik

Product Details Ophalen

// Voorbeeld: Product details ophalen
{
  "resource": "product",
  "operation": "getProduct",
  "productId": "9200000123456789" // EAN of product ID
}

Producten Zoeken

// Voorbeeld: Zoeken naar producten
{
  "resource": "search",
  "operation": "searchProducts",
  "searchQuery": "laptop",
  "additionalFields": {
    "limit": 20,
    "offset": 0
  }
}

Ondersteunde Operaties

Product Resource

  • Get Product Details: Haal gedetailleerde informatie op over een specifiek product
  • Get Product List: Haal een lijst van producten op met filters

Search Resource

  • Search Products: Zoek naar producten met keywords

API Endpoints

Deze node gebruikt de volgende Bol.com Partner API endpoints:

  • GET /catalog/v4/products/{productId} - Product details
  • GET /catalog/v4/search - Product zoeken
  • POST /login/token - Authenticatie

Foutafhandeling

De node bevat uitgebreide foutafhandeling voor:

  • Authenticatie fouten
  • API rate limiting
  • Netwerk problemen
  • Ongeldige parameters

Ontwikkeling

Lokaal Ontwikkelen

# Clone de repository
git clone https://github.com/yourusername/n8n-nodes-bol-com.git
cd n8n-nodes-bol-com

# Installeer dependencies
npm install

# Build de node
npm run build

# Link voor lokale ontwikkeling
npm link

Project Structuur

n8n-nodes-bol-com/
├── credentials/
│   └── BolComApi.credentials.ts
├── nodes/
│   └── BolCom/
│       ├── BolCom.node.ts
│       └── bol-com.svg
├── dist/                 # Compiled output
├── package.json
├── tsconfig.json
└── README.md

Bijdragen

Bijdragen zijn welkom! Zie CONTRIBUTING.md voor richtlijnen.

Licentie

Dit project is gelicenseerd onder de MIT License - zie het LICENSE bestand voor details.

Support

Disclaimer

Deze node is niet officieel geassocieerd met Bol.com. Het is een community-ontwikkelde integratie voor de Bol.com Partner API.