Socket
Socket
Sign inDemoInstall

bolcom

Package Overview
Dependencies
1
Maintainers
1
Versions
10
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    bolcom

Access Bol.com Open API service


Version published
Weekly downloads
2
decreased by-80%
Maintainers
1
Install size
47.0 kB
Created
Weekly downloads
 

Changelog

Source

2.1.3 (2022-05-30)

Documentation Changes
  • Added deprecation announcement (de40489a)
  • Removed old methods (3e9e63c8)

Readme

Source

bolcom

Access the Bol.com Partner Open API with Node.js (unofficial)

Deprecation announcement

npm Build Status Coverage Status

Usage

const BolAPI = require ('bolcom');
const bol = new BolAPI ({
  apikey: 'abc123',
});

bol.catalogSearch ({
  q: 'node.js',
})
  .then (data => {
    for (let p in data.products) {
      product = data.products[p];
      console.log (`${product.title} - € ${product.offerData.offers[0].price}`);
    }
  })
  .catch (err => {
    console.log ('Search failed');
    console.log (err);
  })
;

Requirements

Installation

npm install bolcom

Methods

Error handling is not included in the following examples. See the Usage section above for an example with proper error handling.

ping

( )

Simple API access test. The result data should be an object with only one property named message with the exact value Hello world!!.

bol.ping().then (data => {
  if (data.Message === 'Hello World!') {
    console.log ('pong');
  }
  else {
    console.log ('ouch');
  }
});

catalogSearch

({ ... })

Search products in the catalog.

The result data is modified to remove a few xml-style annoyances.

paramtypedescription
...objectsearch paramaters
bol.catalogSearch ({
  q: 'node.js',
})
  .then (data => {
    for (let i in data.products) {
      let product = data.products[p];
      console.log (`${product.title} - ${product.summary}`);
    }
  })
;

API documentation

catalogLists

({ [...] })

Product lists, based on list type and category.

paramtypedescription
[...]objectArguments, see API documentation
bol.catalogLists()
  .then (data => data.products)
  .then (data => data.filter (itm => itm.rating >= 40))
  .then (data => data.forEach (itm => {
    console.log (`${itm.rating} - ${itm.title}`);
  }))
;

API documentation

catalogProducts

({ productId, [...] })

Get details information for one or more products.

paramtypedescription
productIdstringProduct ID
[...]objectArguments, see API documentation
bol.catalogProducts ({
  productId: '9200000023292527',
  includeattributes: true,
})
  .then (data => {
    for (let p in data.products) {
      let product = data.products[p];
      console.log (`${product.title} - € ${product.offerData.offers[0].price}`);
    }
  })
;

API documentation

catalogRecommendations

({ productId, [...] })

Get recommended products for a given product.

paramtypedescription
productIdstringProduct ID
[...]objectArguments, see API documentation
bol.catalogRecommendations ({
  productId: '9200000023292527',
})
  .then (data => {
    for (let i in data) {
      let product = data[i];
      console.log (`${product.title} - ${product.rating}`);
    }
  })
;

API documentation

catalogRelatedproducts

({ productId, [...] })

Get related products for a given product.

paramtypedescription
productIdstringProduct ID
[...]objectArguments, see API documentation
bol.catalogRelatedProducts ({
  productId: '9200000010839998',
})
  .then (console.log)
;

API documentation

Errors

messagedescription
missing apikeyCredentials are not set

Unlicense

This is free and unencumbered software released into the public domain.

Anyone is free to copy, modify, publish, use, compile, sell, or distribute this software, either in source code form or as a compiled binary, for any purpose, commercial or non-commercial, and by any means.

In jurisdictions that recognize copyright laws, the author or authors of this software dedicate any and all copyright interest in the software to the public domain. We make this dedication for the benefit of the public at large and to the detriment of our heirs and successors. We intend this dedication to be an overt act of relinquishment in perpetuity of all present and future rights to this software under copyright law.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

For more information, please refer to https://unlicense.org/

Author

Franklin | Buy me a coffee

Keywords

FAQs

Last updated on 30 May 2022

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc