Skip to main content
Published: February 28 2008, 6:18:00 PMUpdated: August 15 2022, 11:43:50 PM

I need to get the following sellers information:

1. Member Since date
2. Location, (e.g.,. United states)
3. 1, 6 and 12 month scores of positive, negative and neutral.

What eBay API call do I make to get this information?

You can get that information with the Shopping API GetUserProfile call.  You can also get that in Trading API with a combination of GetFeedback and GetUser :

Here's a sample Shopping API call.  A sample AppID which you should replace for your own calls.  I picked a random seller.

http://open.api.ebay.com/shopping?callname=GetUserProfile&version=537&siteid=0&appid=eBayAPID-73f4-45f2-b9a3-c8f6388b38d8&UserID=YOURSELLER&IncludeSelector=Details,FeedbackHistory&responseencoding=XML


<PositiveFeedbackPeriods>
<PeriodInDays>30</PeriodInDays>
<Count>9</Count>

<PositiveFeedbackPeriods>
<PeriodInDays>180</PeriodInDays>
<Count>27</Count>

<PositiveFeedbackPeriods>
<PeriodInDays>365</PeriodInDays>
<Count>67</Count>


<User>
<UserID>YOURSELLER</UserID>
<FeedbackPrivate>false</FeedbackPrivate>
<FeedbackRatingStar>Blue</FeedbackRatingStar>
<FeedbackScore>96</FeedbackScore>
<NewUser>false</NewUser>
<RegistrationDate>2000-03-27T02:03:45.000Z</RegistrationDate>
<RegistrationSite>US</RegistrationSite>
<Status>Confirmed</Status>
<SellerBusinessType>Private</SellerBusinessType>
<SellerItemsURL>http://search.ebay.com/_YOURSELLER</SellerItemsURL>
<AboutMeURL>http://members.ebay.com/aboutme/YOURSELLER</AboutMeURL>
<MyWorldURL>http://myworld.ebay.com/YOURSELLER</MyWorldURL>
<ReviewsAndGuidesURL>http://search.reviews.ebay.com/members/YOURSELLER</ReviewsAndGuidesURL>
-
     <FeedbackDetailsURL>
http://feedback.ebay.com/ws/eBayISAPI.dll?ViewFeedback&userid=YOURSELLER&ssPageName=STRK:ME:UFS
</FeedbackDetailsURL>
</User>

How well did this answer your question?
Answers others found helpful