Ebay API Node.js
Ebay API Client for node js.
The intent is to simplify the request process by handling the tedious logic. It's a thin wrapper around eBay Api.

Table of Contents
Installation
npm install ebay-node-api
Usage:
let eBay = require('ebay-node-api')
let ebay = new eBay({
clientID: "-- Client APP ID ----",
})
Creates a new Ebay
instance.
Getting Client ID:
Join eBay developers program.
Register your app here https://go.developer.ebay.com/quick-start-guide.
Options
clientID
- Required(String
) - Client Id key provided when you register in eBay developers program.
limit
- optional(Number
) - fetch items functionality - Number that limits the number of data you need in response.
details
- optional(Boolean
) - Get User Details functionality - true, if you need details about the user.
Example
GetAccessToken
const Ebay = require("ebay-node-api");
let ebay = new Ebay({
clientID: "--Client Id----",
clientSecret: '-- Client Secret --',
body: {
grant_type: "client_credentials"
}
});
ebay.getAccessToken().then((data) => {
console.log(data);
}, (error) => {
console.log(error);
});
FetchItemsByKeyword
const Ebay = require("ebay-node-api");
let ebay = new Ebay({
clientID: "-- Client APP ID ----",
limit: 6
});
ebay.findItemsByKeywords("iphone").then((data) => {
console.log(data);
}, (error) => {
console.log(error);
});
GetAllCategories
const Ebay = require("ebay-node-api");
let ebay = new Ebay({
clientID: "-- Client App id ----",
details: "childCategories"
});
ebay.getAllCategories().then((data) => {
console.log(data);
}, (error) => {
console.log(error);
})
GetItemsByCategory
let ebay = new Ebay({
clientID: "-- Client APP ID ----",
limit: 6
});
ebay.findItemsByCategory(10181).then((data) => {
console.log(data);
}, (error) => {
console.log(error);
});
GetItem
ebay.getAccessToken()
.then((data) => {
ebay.getItem('v1|202117468662|0').then((data) => {
console.log(data);
})
});
GetItemByLegacyId
ebay.getAccessToken()
.then((data) => {
ebay.getItemByLegacyId({
"legacyItemId": 2628001
"legacyVariationSku": "V-00031-WHM"
}).then((data) => {
if (!data) console.log(data);
});
});
GetItemsByGroupId
ebay.getAccessToken()
.then((data) => {
ebay.getItemByItemGroup("151915076499").then((data) => {
console.log(data)
}, (error) => {
console.log(error);
});
});
SearchItemsByKeyword
ebay.getAccessToken()
.then((data) => {
ebay.searchItems({
keyword: "drone",
limit: "3"
}).then((data) => {
console.log(data);
})
});
SearchItemsByFreeShipping
ebay.getAccessToken()
.then((data) => {
ebay.searchItems({
keyword: "drone",
limit: 3,
filter: 'maxDeliveryCost:0'
}).then((data) => {
console.log(data);
})
});
SearchItemsByFilter
ebay.getAccessToken()
.then((data) => {
ebay.searchItems({
keyword: "iphone",
limit: 3,
filter: 'price:[300..800],priceCurrency:USD,conditions{NEW}'
}).then((data) => {
console.log(data);
})
});
TaxonomyApi
ebay.getAccessToken()
.then((data) => {
ebay.getDefaultCategoryTreeId("EBAY_US").then((data) => {
console.log(data);
});
ebay.getCategoryTree(0).then((data) => {
console.log(data);
});
ebay.getCategorySubtree(0, 11450).then((data) => {
console.log(data);
});
ebay.getCategorySuggestions(0, "iphone").then((data) => {
console.log(data);
});
ebay.getItemAspectsForCategory(0, 67726).then((data) => {
console.log(data);
});
});
Test
All test files are present inside test folder. You can run using
npm run test
Issues:
If you are facing any issues, you can create the issues here.
Contribution:
Willing to share your idea or ready to contribute, check here
License:
MIT.
Examples:
I have mentioned the examples here
https://github.com/ajay2507/ebay-node-api/tree/master/demo.