Questions tagged [ebay-api]

Application programming interface for integrating third-party programs with the eBay platform

supports a Developers Program, providing registered developers an which lets custom applications query the eBay in format or REST-style json format, and perform actions within the eBay platform.

The API features include:

  • Submitting items for listing
  • Listing eBay categories
  • Viewing information about listed items
  • Getting high bidder information for items you are selling
  • Retrieve lists of items a particular user is currently selling
  • Retrieve lists of items a particular user has bid on
  • Display eBay listings on other sites
  • Leaving feedback about other users

Related resources (, and as well as documentation) can be found at https://go.developer.ebay.com.

1116 questions
4
votes
4 answers

Changing eBay API target site from US to UK

I currently have working project for uploading my products via API to ebay.com (US) website and I am trying to get it to work for eBay's UK website. What are the parameters I need to change in my API call, besides following. SiteId : 3 (UK) (in…
dhavald
  • 524
  • 4
  • 12
4
votes
1 answer

how to get price with ebay API

So I have this code, but the price of the item isn't showing up. Everything else (photo and link) is working. I tried 'currentPrice' but nothing shows up. And this is the Ebay API. I spent about two hours looking for a solution, but it's not very…
miks
  • 43
  • 1
  • 4
4
votes
1 answer

How to get PayPal TransactionID via eBay API

I need to get PayPal TransactionID of the paid order on eBay via API. I use ExternalTransaction like described here: https://ebay.custhelp.com/app/answers/detail/a_id/1550/~/linking-ebay-and-paypal-transactions ExternalTransactionType[]…
ihorko
  • 6,855
  • 25
  • 77
  • 116
4
votes
2 answers

eBayAPIInterfaceService Could not be found

I can't seem to get even the most basic Ebay Api Call working. I'm trying to do the tutorial found here: http://developer.ebay.com/DevZone/xml/docs/HowTo/FirstCall/MakingCallCSharp.html However i keep getting an error that read: "the type or…
4
votes
1 answer

How to request products with ebay api?

How can I call eBay and request it to return search results array? This is what I came up with so far: string endpoint = "https://api.ebay.com/wsapi"; string siteId = "0"; string appId = "*"; // use your app ID string devId = "*"; // use…
Andrew
  • 7,619
  • 13
  • 63
  • 117
3
votes
1 answer

Api ebaysdk trading error 2191930 while uploading an item

I've been having trouble with eBay's API for days when it comes to trading (I drew almost entirely on the tutorial of this article). I would like to upload a sample item (extracted from the timotheus trading module) to the Sandbox but my little…
Memmo
  • 298
  • 3
  • 8
  • 31
3
votes
1 answer

Ebay OAuth API ERROR: invalid_grant - the provided authorization grant code is invalid or was issued to another client

I am trying to get a OAuth User Access Token from the eBay API using this document: https://developer.ebay.com/api-docs/static/oauth-authorization-code-grant.html My Code works perfectly fine if I use: "grant_type": "client_credentials" but when I…
zeroalpha
  • 173
  • 1
  • 11
3
votes
0 answers

eBay Fulfilment API not returning shipping addresses

I'm trying to retrieve the addresses for unfulfilled orders but for whatever reason since yesterday they've just stopped appearing in the response JSON. The access token is fresh. Everything else is there accept the addresses. For any order. This is…
3
votes
1 answer

C# eBayAPIInterfaceClient error: The web service eBayAPI is not properly configured or not found and is disabled

I am trying to interface with the ebay API in C#. The sample code in C# that they give to get the time works fine. This seems to be using a "web reference" in VS (I'm using 2008 Express). When I have a go by adding a "service reference" to my…
indigo
  • 84
  • 6
3
votes
2 answers

Making a simple authorized request to eBay

I'm planning to integrate a website with eBay using PHP, but first I'm using Postman to test everything. Authorization took me an entire day, but I think I've got it working now. (I had to update to the latest version of Postman, then I got it to…
3
votes
1 answer

How to generate eBay OAuth user token?

I have been using this ebay-sdk-php from David Sadler to generate a Trading Call to Ebay API, but first I have to create the OAuthUserToken. I used the gettoken.php example and created the following code: $service = new…
s_h
  • 1,476
  • 2
  • 27
  • 61
3
votes
0 answers

How to create HTTP Header for eBay Browse API Function

I am trying to get a Product Review Rating through eBay's Browse API. Here is my code for this function: sHeaders := TStringList.Create; sHeaders.Add('X-EBAY-C-ENDUSERCTX=' + '"affiliateCampaignId=' +…
James
  • 71
  • 1
  • 8
3
votes
0 answers

no items found with eBay browse api

Beside my HTTP request implementation in the Apollo server, I'm using the Production section of the eBay developer sandbox tool. I try to find items from eBay browse API /item_summary/search (Docu). E.g. I request a German specific therm…
Ronny Springer
  • 199
  • 1
  • 5
  • 16
3
votes
1 answer

eBay SDK not recognizing sandbox user account

This is the contents of my ebay.yaml file: name: ebay_api_config # Trading API Sandbox - https://www.x.com/developers/ebay/products/trading-api api.sandbox.ebay.com: compatability: 719 appid: XXXXXXXXXX certid: XXXXXXXXXX devid:…
user3299633
  • 2,971
  • 3
  • 24
  • 38
3
votes
2 answers

Deep linking to a specific product in ebay app iOS Swift

I am working on price comparison application, in which I have products of ebay, in addition to many other vendors. I have web url of an ebay product, and I want to open that product page in ebay iOS app(If installed). Other applications like amazon…
Awais Fayyaz
  • 2,275
  • 1
  • 22
  • 45