- Canon 1D X (MSPR: $6,799.00)
- Canon 5D Mk III (MSRP: $3,499.00)
- Canon 6D (MSRP: $2,099.00)
- Canon 650D (MSRP: $849.99)
Our goal is to use Terapeak for eBay market data, to determine just how quickly a new camera depreciates in value.

The sample set is pulled using the keyword string “canon 650d body -kit -lens -is -grip -card -case -gift” with filters for “new” items and a category restriction of “Digital Cameras”.
Rather than using the graphical user interface (GUI) front end, we’ll take advantage of Terapeak’s Research APIs to retrieve raw data points, which we’ll further analyze in Excel.
After getting started with free access, we iterate through our models using the GetResearchTrends request, configured the same as our earlier search queries, to retrieve the sales statistics:
<GetResearchTrends> <SearchQuery> <Keywords> <![CDATA[canon 650d iv body -kit -lens -is -grip -card -case -gift]]]]> </Keywords> <Currency>1</Currency> <CategoryLimit> <CategoryID>31388</CategoryID> </CategoryLimit> <Dates> <EndDate>2013-03-11</EndDate> <DateRange>365</DateRange> </Dates> <ItemCondition> <RollupValueID>1</RollupValueID> </ItemCondition> <Breakdown> <Weekly>1</Weekly> </Breakdown> </SearchQuery> </GetResearchTrends>
Which gives us our sales statistics back in XML format:
<Week id = '51' days = '7' StartDate = '2013-03-06' EndDate = '2013-03-12'> <Revenue>245</Revenue> <Listings>1</Listings> <Successful>1</Successful> <ItemsSold>1</ItemsSold> <Bids>1</Bids> <Sellers>1</Sellers> </Week>
At this point, we could write a small script to translate the XML into a CSV file for import into Excel. But because I’m only interested in 2 variables, the revenue and quantity of items sold, I can get away with a quick search and append to column command.
$ grep 'Revenue\|ItemsSold' 650data.xml | paste -d , - - >> 650d.csv
Lastly, we import the CSV files into Excel, do some cleanup of the values (deleting the extraneous XML tags), add the average price calculating (revenue / quantity) and calculate the percentage of MSRP that we see per week.
The finished data table looks like this.

Because we imported the data for the entire year, some models have many weeks with no sales activity. This is due to the cameras being released at different times during the year, which means we need to re-arrange the data so that Week 1 corresponds to the first week of sales for all the models we are comparing.
Note: Since we’re normalizing the dates in this way, we lose the ability to compare the ASP to specific calendar events during the year, such as Christmas or Photokina. In practical terms, these events change the total sales (GMV) more than they do ASP, so we’re safe to disregard them in this analysis.

Finally, we arrive at an apples to apples comparison of depreciation for the four camera bodies. The first observation is that, in true eBay form, there’s initially a spike in ASP to levels higher than MSRP as eager buyers pay a premium to get the new cameras as soon as they are released. But beyond that, it’s visually tough to tell what’s going on.
Add in some trend lines though, and it’s another story. This graph tells us that:

-
The Canon 1D X and 5D Mark III are depreciating at almost the same rate, even though the 1D X is double the price as the 5D Mk III.
-
The 6D and 650D despite being billed as two different classes of. camera (prosumer and entry level, respectively), depreciate at roughly the same rate, with the 650D (the cheaper of the two) retaining marginally more value as the weeks progress.
After 26 weeks, the professional 1D X and 5D Mk III hold a little less than 90% of the MSRP, with the 6D and 650D down at 70%. Key takeaways:
-
Buying a more expensive camera (6D vs 650D) doesn’t always mean it will hold its value longer
-
Buying a more expensive class of camera (5D Mk III vs 650D) is a safer bet if concerned about depreciation