Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Ebay API JSON request [closed]

Tags:

json

ebay-api

I am new to eBay API .I using JSON format for request and reply. Can any give me working sample (html file) using JSON( API call findItemsByKeywords) I am basically having trouble in getting the results. Please help me. Thanks in advance.

like image 1000
Ajay nath Avatar asked Sep 08 '11 11:09

Ajay nath


People also ask

Does eBay have open API?

You can download OpenAPI contract for eBay APIs, generate clients in one of 40+ supported programming languages, and successfully invoke an eBay API in minutes.

Is eBay API free?

Yes, eBay API is open and free, but the access to the developer account is granted only after approval, and to certain kinds of APIs – after submitting a production application process.

What can I do with eBay API?

With eBay APIs, you can create applications that perform many of the same operations that you can perform on the eBay site, eBay mobile application, or other eBay tools.

What does API stand for in eBay?

The eBay API is an Application Programming Interface for interacting directly with the eBay database. The communication occurs over the Internet in the XML format. Using the API, an application can provide a custom interface, functionality or specialized operations not otherwise afforded by the eBay interface.


1 Answers

You need to make this HTTP request:

http://svcs.ebay.com/services/search/FindingService/v1?OPERATION-NAME=findItemsByKeywords
   &SERVICE-VERSION=1.0.0
   &SECURITY-APPNAME=YOUR_APP_ID_HERE
   &RESPONSE-DATA-FORMAT=JSON
   &REST-PAYLOAD
   &keywords=harry%20potter%20phoenix

Source: eBay Finding API Making an API Call

like image 114
zengr Avatar answered Sep 24 '22 17:09

zengr