This is the documentation for the API call for the Ebay API, but I can't seem to find an example of how to construct the URI... http://developer.ebay.com/Devzone/XML/docs/Reference/ebay/PlaceOffer.html also I was wondering if anybody has found anything like a stock brokers API or other online businesses.
This is the example URI ebay provides for searching for products, however the documentation isn't very straight forward on how the other URI's can be constructed with this basic layout
var url = "http://svcs.ebay.com/services/search/FindingService/v1"+
"?OPERATION-NAME=findItemsByKeywords"+
"&SERVICE-VERSION=1.0.0"+
"&SECURITY-APPNAME=myKey"+
"&GLOBAL-ID=EBAY-US"+
"&RESPONSE-DATA-FORMAT=XML"+
"&REST-PAYLOAD"+
"&keywords=harry%20potter%20phoenix"+
"&paginationInput.entriesPerPage=15";
If you do know of something, could you link me or perhaps share the URI?