Node.js module for the Bing Search API (Cognitive Services)
Find a file
2015-05-07 11:48:03 +02:00
lib Avoid searches to permanent overwrite options 2015-05-07 11:27:44 +02:00
test Fix test 2015-05-07 10:28:01 +02:00
.gitignore Ignore t.js 2014-09-19 14:22:53 +02:00
Gruntfile.js jshint laxbreak 2014-10-04 23:00:16 +02:00
index.js Git init 2014-09-18 18:24:52 +02:00
LICENSE Add license file 2014-09-19 14:50:37 +02:00
package.json Bump to 1.3.0 2015-05-07 11:35:57 +02:00
README.md Minors README 2015-05-07 11:48:03 +02:00

Node Bing API

Node.js lib for the Azure Bing Web Search API

Installation

npm install node-bing-api

Usage

Require the library and initialialize it with your account key:

var Bing = require('node-bing-api')({ accKey: "your-account-key" });
Bing.web("Pizza", function(error, res, body){
    console.log(body);
  },
  {
    top: 10,  // Number of results (max 50)
    skip: 3,   // Skip first 3 results
  });
Bing.composite("xbox", function(error, res, body){
    console.log(body);
  },
  {
    top: 10,  // Number of results (max 50)
    skip: 3,   // Skip first 3 results
    sources: "web+news", //Choises are web+image+video+news+spell
    newssortby: "Date" //Choices are Date, Relevance
  });
Bing.news("xbox", function(error, res, body){
    console.log(body);
  },
  {
    top: 10,  // Number of results (max 50)
    skip: 3,   // Skip first 3 results
    newssortby: "Date" //Choices are: Date, Relevance
    newscategory: "rt_Business" // Choices are:
                                //   rt_Business
                                //   rt_Entertainment
                                //   rt_Health
                                //   rt_Politics
                                //   rt_Sports
                                //   rt_US
                                //   rt_World
                                //   rt_ScienceAndTechnology
  });
Bing.video("monkey vs frog", function(error, res, body){
    console.log(body);
  },
  {
    top: 10,  // Number of results (max 50)
    skip: 3,   // Skip first 3 result
    videofilters: {
      duration: 'short',
      resolution: 'high' 
    }
  });
Bing.images("Ninja Turtles", function(error, res, body){
  console.log(body);
}, {skip: 50});

Adding filter(s) for the Image Search

Bing.images("Ninja Turtles", function(error, res, body){
  console.log(body);
  }, 
  {
    imagefilters: {
      size: 'small',
      color: 'monochrome' 
    }
  });

Accepted filter values:

  • Size:<Small | Medium | Large>
  • Size:Height:<Height>
  • Size:Width:<Width>
  • Aspect:<Square | Wide | Tall>
  • Color:<Color | Monochrome>
  • Style:<Photo | Graphics>
  • Face:<Face | Portrait | Other>

Specify Market

Getting spanish results:

Bing.images("Ninja Turtles", function(error, res, body){
  console.log(body);
}, {top: 5, market: 'es-ES'});

List of Bing Markets

Adult Filter

Bing.images('Kim Kardashian', function(error, res, body){
  console.log(body.d.results);
}, { market: 'en-US', adult: 'Strict'});

Accepted values: "Off", "Moderate", "Strict".

Moderate level should not include results with sexually explicit images or videos, but may include sexually explicit text.

License

MIT