/app_annie

Wrapper for the AppAnnie app store analytics API

Primary LanguageRubyMIT LicenseMIT

AppAnnie

Build Status Gem Version

Simple Ruby wrapper for App Annie's analytics API

Installation

Add this line to your application's Gemfile:

gem 'app_annie', github: 'modeset/app_annie'

And then execute:

$ bundle

Usage

First, set your AppAnnie API key. You can do this via the APPANNIE_API_KEY environment variable, or by setting AppAnnie.api_key

Intelligence API

(after setting your api key)

AppAnnie::Intelligence.top_app_charts(options)
  • required options: market, device, and categories
  • default options: vertical: 'apps', countries: 'US'
  • all other options get passed as query params. See Intelligence API docs

Contributing

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request