Ebay API with description

You have to use Shopping API, for instance: http://developer.ebay.com/DevZone/shopping/docs/CallRef/GetSingleItem.html#sampledescriptionitemspecifics


I use following (very simple function to get Item detail from ebay):

function eBayGetSingle($ItemID){
   $URL = 'http://open.api.ebay.com/shopping';

   //change these two lines
   $compatabilityLevel = 967; 
   $appID = 'YOUR_APP_ID_HERE';

   //you can also play with these selectors
   $includeSelector = "Details,Description,TextDescription,ShippingCosts,ItemSpecifics,Variations,Compatibility";


   // Construct the GetSingleItem REST call         
   $apicall = "$URL?callname=GetSingleItem&version=$compatabilityLevel"
            . "&appid=$appID&ItemID=$ItemID"
            . "&responseencoding=XML"
            . "&IncludeSelector=$includeSelector"; 
   $xml = simplexml_load_file($apicall);

   if ($xml) {
     $json = json_encode($xml);
     $array = json_decode($json,TRUE);
     return $array;
   }
   return false;
}

Tags:

Ebay Api