10-04-2023 11:56 AM
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.
10-04-2023 01:26 PM
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: