API wrapper for getting trademark information from http://www.markerapi.com
$ npm install node-trademark
This repo is supposed to run fine on all major OS platforms and targets Node.js >=7.0
You will need to sign up on http://www.markerapi.com and use credentials in the form of a set of username and password. You can get these from your markerapi profile.
const markerApi = require('node-trademark')
markerApi.init({
username: ''
password: ''
})
You now have the ability to search trademark against a string.
markerApi
.getTrademark(searchQuery /* 'Microsoft' */)
.then(function (res) {
/**
* Example JSON Response
*
* {
* "count":1,
* "trademarks":[{
* "serialnumber":"73236080",
* "wordmark":"MICROSOFT",
* "code":"GS0091",
* "description":"Computer Programs",
* "registrationdate":"07\/06\/1982"
* }]
* }
*/
})
.catch(function (err) {
/**
* Handle error
*/
})
$ npm test
Please mention node and npm version while creating an issue.