cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

Download a CSV file for selective items including all data including item weight and dimensions

I would like this CSV file in order to identify items which may qualify for the new CPC expedited lite shipping method.

This would also be useful to identify other listing issues.

Message 1 of 2
latest reply
1 REPLY 1

Download a CSV file for selective items including all data including item weight and dimensions

The Seller Hub > Downloads page contains some information as downloadable spreadsheets, but does not include package dimensions.

 

eBay's traditional Trading API can download single items using the GetItem call:

https://developer.ebay.com/Devzone/XML/docs/Reference/eBay/StandardListingIndex.html

However, it will arrive in XML format rather than as a spreadsheet, like the package details section of code shown here:  

    <ShippingPackageDetails>
      <PackageDepth measurementSystem="English" unit="inches">4</PackageDepth>
      <PackageLength measurementSystem="English" unit="inches">12</PackageLength>
      <PackageWidth measurementSystem="English" unit="inches">8</PackageWidth>
      <ShippingIrregular>false</ShippingIrregular>
      <ShippingPackage>PackageThickEnvelope</ShippingPackage>
      <WeightMajor measurementSystem="English" unit="lbs">3</WeightMajor>
      <WeightMinor measurementSystem="English" unit="oz">8</WeightMinor>
    </ShippingPackageDetails>

 

If you are enrolled in the Developer program, you can experiment with API Explorer here, where you would first create a production token and then enter that token in this production test, along with the item number you want to retrieve: 

https://developer.ebay.com/my/api_test_tool?index=0&api=trading&call=GetItem&variation=xml&env=produ...  

 

 

 

 

ShipScript has been an eBay Community volunteer since 2003, specializing in HTML, CSS, Scripts, Photos, Active Content, Technical Solutions, and online Seller Tools.
Message 2 of 2
latest reply