You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+3-2Lines changed: 3 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -41,20 +41,22 @@ let ebay = new eBay({
41
41
}
42
42
})
43
43
```
44
+
For Country Code and Marketplace id [check here](https://developer.ebay.com/DevZone/finding/CallRef/Enums/GlobalIdList.html)
44
45
45
46
## Starter Guide
46
47
47
48
Check out the [Starter Guide](https://pajaydev.github.io/ebay-node-api) documentation with examples to get started.
48
49
49
50
## Using Express js
50
-
You can consume these ebay node api's using [Express](https://expressjs.com/). You can checkout the sample app [here]().
51
+
You can consume these ebay node api's using [Express](https://expressjs.com/). You can checkout the sample app [here](https://github.com/pajaydev/ebay-node-api/tree/master/demo/node-express).
GET | getDeals | Get details about the deals across eBay.| [Example](https://github.com/pajaydev/ebay-node-api/blob/master/demo/deals.js) | [doc](https://developer.ebay.com/devzone/finding/callref/finditemsbykeywords.html)
58
60
GET | findItemsByKeywords | Searches for items on eBay by a keyword query.| [Example](https://github.com/pajaydev/ebay-node-api/blob/master/demo/finding.js#L21) | [doc](https://developer.ebay.com/devzone/finding/callref/finditemsbykeywords.html)
59
61
GET | findCompletedItems | Searches for items whose listings are completed and are no longer available for sale by category (using categoryId), by keywords (using keywords), or a combination of the two.| [Example](https://github.com/pajaydev/ebay-node-api/blob/master/demo/finding.js#L40) | [doc](https://developer.ebay.com/devzone/finding/callref/findCompletedItems.html)
60
62
GET | findItemsByProduct | Searches for items on eBay using specific eBay product values.| [Example](https://github.com/pajaydev/ebay-node-api/blob/master/demo/finding.js#L55) | [doc](https://developer.ebay.com/devzone/finding/callref/finditemsbykeywords.html)
0 commit comments