Developers Program

Retrieving the watch count of an item

Published: July 18 2012, 10:23:00 AMยทUpdated: August 23 2022, 5:37:27 AM

Products

Question

How can I get the WatchCount of an item?

Answer

Summary

How to retrieve the watch count of an item

Detailed Description

There are a few ways and a few calls to retrieive the watch count of an item.

1. GetItem - when making a GetItem request, be sure to include IncludeWatchCount and set it to true. This will return the WatchCount in the response.

https://developer.ebay.com/devzone/xml/docs/reference/ebay/getitem.html#Request.IncludeWatchCount

2. GetMyeBaySelling - this will get the watch count of items and variations.

https://developer.ebay.com/devzone/xml/docs/reference/ebay/getmyebayselling.html?norover=1&mkevt=1&mkrid=711-153320-877673-6&mkcid=2&keyword=&crlp=616001529117_&MT_ID=&geo_id=&rlsatarget=dsa-19959388920&adpos=&device=c&loc=1007751&poi=&abcId=&cmpgn=17887227751&sitelnk=&adgroupid=148531643428&network=g&matchtype=&gclid=Cj0KCQjw9ZGYBhCEARIsAEUXITX2axOuGCVQ_k1fbh1aq58P5IpFkB6clyr3yQ4BO8sSpkVZoVQWqx8aAvdzEALw_wcB#Response.ActiveList.ItemArray.Item.WatchCount

3. GetMyeBayBuying - this will get a list of items you are watching. Be sure to include <WatchList>. Once you have this list you can also see how many other users are watching the item.

https://developer.ebay.com/devzone/xml/docs/reference/ebay/getmyebaybuying.html

*NOTE - buyers can add and delete items from their watch list. So the WatchCount may change. For example, if I am watching an item, and a seller was to inquire about the WatchCount and gets back a "1". If I then delete that item from my watch list, when the seller inquires again he will see a "0".

Additional Resources

Additional Comments
How well did this answer your question?