Skip to main content

Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines

Number of downloads in a time range?

A topic by Alva Majo created Jan 14, 2020 Views: 391 Replies: 1
Viewing posts 1 to 2

From the Analytics tab of a game you can see graphs of views, downloads and payments for custom time ranges, but is there a way to see the total numbers for that range? Just having a graph but not the total number is not that useful, specially for long periods of time. Being able to see the total revenue for that range would also be greatly appreciated.

So, is there no way to do this or am I missing the option?

Thanks.

Admin (3 edits) (+1)

There’s no way to see this right now from our UI. If you really want to get a value and don’t mind working through the data, you can pull the graph data from the page source/http request. It’s going to be a json object that you can manually sum up.

For example:

You can request https://itch.io/game/summary/GAME_ID?group_by=daily&range_left=2019-12-01&range_right=2019-12-31 with accept ending application/json. (Or if you load it in your browser, the json object is in the source of the page)

It will return the daily stats for the month of December for GAME_ID. The format should be easy to parse and calculate a sum from.

Note that this is not a documented API, so I can’t guarantee it will be available at that URL or in that format forever, but you’re welcome to use it now to fetch the data.

This topic has been auto-archived and can no longer be posted in because there haven't been any posts in a while.