Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8777247
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 13, 20262026-06-13T19:14:09+00:00 2026-06-13T19:14:09+00:00

Based on the conversation here: Is there an API to get sales report on

  • 0

Based on the conversation here: Is there an API to get sales report on Google Play?

There may be a way to make an HTTPS Request (?) to google play to retrieve the download statistics programatically. I am trying to set up a program that runs everyday and downloads this information as a csv file.

Does anyone have an example of how to make the request and provide authentication?

Basically I want to download the information Andlytics provides in a csv

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-13T19:14:10+00:00Added an answer on June 13, 2026 at 7:14 pm

    There is no API. The good news is that the new Google Play Console interface, now available to everyone, allows CSV export of all statistics.

    Just for fun, here are some other pointers :

    The Andlytics application is just doing a simulation of the browser and parses the JSON AJAX requests. It is open source, you can find all the code (in Java) here https://github.com/AndlyticsProject/andlytics

    You can also do a basic console scraper using Rails and Selenium :

    module Console
      require 'selenium-webdriver'
    
      def self.user_stats email, password
        login email, password
        stats = extract_stats
        extract_packages.each_with_index do |package, i|
          download = stats[i*2]
          install = stats[i*2+1]
          puts "#{package} - Downloaded #{download} / Installed #{install}"
        end
        quit
      end
    
      def self.init
        @driver.quit if @driver
        @driver = Selenium::WebDriver.for :firefox
      end
    
      def self.quit
        @driver.quit if @driver
      end
    
      def self.login email, password
        init
        @driver.navigate.to "https://market.android.com/publish/Home"
        element = @driver.find_element(:name, 'Email')
        element.send_keys email
        element = @driver.find_element(:name, 'Passwd')
        element.send_keys password
        element.submit
        sleep 10
      end
    
      def self.extract_packages
        packages = []
        @driver.find_elements(:xpath, '//div[@class="listingRow"]/table/tbody/tr/td/div/a').each do |e|
          if m = e.attribute('href').match(/^https\:\/\/market\.android\.com\/publish\/Home#ViewCommentPlace\:p\=(.*)$/)
            packages << m[1]
          end
        end
        packages
      end
    
      def self.extract_stats
        stats = []
        @driver.find_elements(:xpath, '//div[@class="listingRow"]/div/div/span').each do |e|
          if m = e.text.match(/^([0-9,\. ]+).*$/)
            stats << m[1].gsub(/[^\d]/, "")
          end
        end
        stats
      end
    
    end
    

    Just add the CSV/db stuff and a cronjob, it should work.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Based on a grayscale image and an ordered closed polygon (may be concave), I
Based on the recommendation by APIGEE in their RESTful API Design blog post I
Based on this article I was able to get the FullName to work rather
I am trying to create a conversations based messaging system. I want to group
Based on how things are done for my company, we issue updates very very
Based on an answer from a candidate I have a confusion regarding the functioning
Based on the answer for this question What's the difference between CompositionBatch and catalogs?
Based on a configuration setting I'd like to direct users to a This site
Based on this question I've created a small application which is catching all debug
based on .designer.cs, i infer that the menu's arrangement is based on the order

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.