{"id":22743111,"url":"https://github.com/rikas/app_store_info","last_synced_at":"2025-07-12T20:40:02.834Z","repository":{"id":56842524,"uuid":"45855517","full_name":"rikas/app_store_info","owner":"rikas","description":"Apple App Store parser — Get information about iOS apps","archived":false,"fork":false,"pushed_at":"2022-06-22T10:32:39.000Z","size":86,"stargazers_count":20,"open_issues_count":0,"forks_count":6,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-03-27T22:13:45.032Z","etag":null,"topics":["android","apple","appstore-api","appstore-library","ruby","ruby-gem"],"latest_commit_sha":null,"homepage":null,"language":"Ruby","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/rikas.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.txt","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2015-11-09T17:45:55.000Z","updated_at":"2025-02-22T03:36:52.000Z","dependencies_parsed_at":"2022-08-29T06:50:54.689Z","dependency_job_id":null,"html_url":"https://github.com/rikas/app_store_info","commit_stats":null,"previous_names":[],"tags_count":10,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rikas%2Fapp_store_info","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rikas%2Fapp_store_info/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rikas%2Fapp_store_info/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rikas%2Fapp_store_info/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/rikas","download_url":"https://codeload.github.com/rikas/app_store_info/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248402525,"owners_count":21097330,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["android","apple","appstore-api","appstore-library","ruby","ruby-gem"],"created_at":"2024-12-11T01:16:37.200Z","updated_at":"2025-04-14T08:42:41.540Z","avatar_url":"https://github.com/rikas.png","language":"Ruby","funding_links":[],"categories":[],"sub_categories":[],"readme":"[![Build Status](https://travis-ci.org/rikas/app_store_info.svg)](https://travis-ci.org/rikas/app_store_info)\n\n# AppStoreInfo\n\nGet details about any app in the Apple App Store. This gem uses iTunes lookup method to get information about apps. (i.e. https://itunes.apple.com/us/lookup?id=343200656).\n\nCompatible with ruby \u003e= 1.9.3\n\n## Installation\n\nAdd this line to your application's Gemfile:\n\n```ruby\ngem 'app_store_info'\n```\n\nAnd then execute:\n\n    $ bundle\n\nOr install it yourself as:\n\n    $ gem install app_store_info\n\n## Usage\n\nYou first have to read the app details, using the store URL or directly with the ID:\n\n```ruby\napp = AppStoreInfo.read_url('https://itunes.apple.com/gb/app/angry-birds/id343200656?mt=8')\napp = AppStoreInfo.read(343200656)\napp = AppStoreInfo.read(343200656, 'gb') # You can give a particular region or it will use 'us'\n```\n\nThen you have some attributes that can be read easily:\n\n```ruby\napp.id                  # =\u003e 343200656\napp.name                # =\u003e \"Angry Birds\"\napp.url                 # =\u003e \"http://www.angrybirds.com/\"\napp.average_user_rating # =\u003e 4.5\napp.user_rating_count   # =\u003e 222131\napp.genre_ids           # =\u003e [\"6014\", \"7003\", \"6016\", \"7001\"]\napp.price               # =\u003e 0.79\napp.currency            # =\u003e \"GBP\"\napp.supported_devices   # =\u003e [\"iPhone-3GS\", \"iPhone4\", \"iPodTouchFourthGen\", ...]\napp.company             # =\u003e \"Rovio Entertainment Ltd\"\napp.description         # =\u003e \"Use the unique powers of the Angry Birds to destroy ...\napp.minimum_os_version  # =\u003e \"6.0\"\napp.features            # =\u003e [\"gameCenter\"]\n```\n\nYou can also check if the app is Universal:\n\n```ruby\napp.universal? # =\u003e false\n```\n\nLast, you can check the details about the latest version of the app:\n```ruby\ncurrent_version = app.current_version\n\ncurrent_version.average_user_rating # =\u003e 4.0\ncurrent_version.user_rating_count   # =\u003e 191\ncurrent_version.number              # =\u003e \"5.2.0\"\ncurrent_version.release_notes       # =\u003e \"We popped some pesky bugs!\"\n```\n\nIf you need to get the genre names there's an helper method for that:\n```ruby\napp.genre_names # =\u003e [\"Games\", \"Action\", \"Arcade\", \"Entertainment\"]\n```\n\nKeep in mind that the information can be localized if you request for a particular region\ninformation. Ratings, currency, price etc. can change.\n\n\n## Development\n\nAfter checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.\n\nTo install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).\n\n## Contributing\n\nBug reports and pull requests are welcome on GitHub at https://github.com/rikas/app_store_info.\n\n\n## License\n\nThe gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frikas%2Fapp_store_info","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frikas%2Fapp_store_info","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frikas%2Fapp_store_info/lists"}