AppFollow is a comprehensive platform for managing the reputation and performance of mobile applications. Its main purpose is to help developers, product managers, and support teams monitor and respond to user reviews from various app stores, including the Apple App Store, Google Play, Amazon Appstore, and Huawei AppGallery. The tool uses Artificial Intelligence to automate responses, analyze user sentiment, and provide actionable insights from feedback. This helps companies improve their app ratings, increase user satisfaction, and boost visibility through App Store Optimization (ASO). AppFollow was founded in 2015 and is headquartered in Helsinki, Finland, serving thousands of companies worldwide.
AppFollow offers a wide set of features to manage and grow mobile apps:
AppFollow provides several pricing tiers to fit different needs. There is a plan for individuals and small teams that offers basic review management and ASO features. A more advanced plan is designed for growing businesses, providing more automation, AI capabilities, and integrations. For large organizations, there is an Enterprise plan that includes custom solutions, premium support, advanced security features, and full API access. Each plan builds upon the previous one, offering more capacity for tracked apps, keywords, and team members.
AppFollow offers a Free Plan that is suitable for individual developers or small projects. This plan typically includes the ability to track a limited number of apps and keywords, access to the reviews inbox for major app stores, and basic analytics. While it has limitations on the volume of reviews you can manage and does not include the most advanced AI and automation features, it is a great way to start managing your app's reputation without any cost. For more advanced features, a free trial of the paid plans is also available.
Getting started with AppFollow is a direct process:
Pros:
Cons:
AppFollow integrates with a wide range of popular business and development tools to streamline workflows. Here are some of the key integrations:
Yes, AppFollow provides a comprehensive API that allows developers to integrate its data and functionality into their own applications, dashboards, and workflows. The API gives you access to reviews, ratings, app metadata, ASO data, and more.
To get an API key, you typically need to be on a paid plan. The key can be generated within your AppFollow account settings under the API section.
Here is a simple example in Python showing how to fetch reviews using the API:
import requests
# Your AppFollow API credentials and app details
api_key = 'YOUR_API_KEY'
app_id = 'YOUR_APP_ID' # e.g., 529479190 for the Facebook app on iOS
# API endpoint for reviews
url = f'https://api.appfollow.io/reviews?ext_id={app_id}&sort=date'
# Set up the headers with your API key
headers = {
'Authorization': f'Bearer {api_key}',
'Content-Type': 'application/json'
}
# Make the GET request
response = requests.get(url, headers=headers)
# Check if the request was successful
if response.status_code == 200:
reviews = response.json()
print('Successfully fetched reviews:')
for review in reviews.get('reviews', []):
print(f"- {review['author']}: {review['content']}")
else:
print(f'Failed to fetch reviews. Status code: {response.status_code}')
print(response.text)
For full documentation, developers should visit the official AppFollow API documentation page on their website.
AppFollow offers a Partner Program rather than a traditional public affiliate program. This program is designed for agencies, consultants, and technology companies that work with mobile app businesses. Partners can get benefits like co-marketing opportunities, client referrals, and special access to AppFollow resources. The commission structure and specific benefits are usually discussed upon application. To join, you typically need to fill out an application on their website detailing your business and how you plan to partner with them. If you cannot find a public page, it is best to contact their sales or support team to inquire about partnership opportunities.