n8n Integration
Overview
AppReviewBot provides an official n8n community node that lets you build automation workflows around your app store reviews. Use it to fetch reviews on demand and list connected apps.
The package includes the AppReviewBot action node to list apps and fetch reviews. Pair it with n8n's built-in Schedule Trigger for periodic exports or alerts.
Prerequisites
Before installing the n8n node, make sure you have:
- An active AppReviewBot account
- At least one app connected (Google Play Store or Apple App Store)
- An API key from Organization Settings → API Key (format:
arb_...)
Learn how to add your first app
Installation
- Open your n8n instance and go to Settings → Community Nodes
- Click Install
- Enter
n8n-nodes-appreviewbotand click Install - Restart n8n when prompted
Credentials Setup
- Log in to dash.appreviewbot.com
- Go to Organization Settings → API Key
- Create or copy your API key
- In n8n, add a new AppReviewBot API credential and paste the key
The credential uses Authorization: Bearer {apiKey} against https://appreviewbot.com/api/v1.
AppReviewBot Action Node
Use this node to fetch data on demand within a workflow.
| Resource | Operation | Description |
|---|---|---|
| App | Get Many | Return all apps connected to your organization |
| Review | Get Many | Return reviews for a selected app |
Review — Get Many
- App selector: pick from a list or enter a composite app reference (e.g.
apple_app_store__123456789) - Return All / Limit: paginate automatically using cursor-based pagination (
starting_after) - Additional Fields: filter by country (ISO 3166-1 alpha-2), rating (1–5 stars), or from/to date range (filters on
content_updated_at)
Review Object Fields
| Field | Description |
|---|---|
id | Review UUID |
app_id | App identifier |
app_store | apple_app_store or google_play_store |
author_display_name | Reviewer name |
content_title | Review title |
content_body | Review text |
content_rating | Star rating (1–5) |
content_updated_at | Unix timestamp of last update |
reply_text | Developer reply (if any) |
country | Two-letter country code |
store_permalink | Link to the review in the store |
Example Workflows
Daily review export
- Add a Schedule Trigger (daily at 9 AM)
- Add AppReviewBot action — Review → Get Many, set From to yesterday
- Add a node to write results to Google Sheets, Airtable, or a database
Fetch all connected apps
- Add a Manual Trigger
- Add AppReviewBot action — App → Get Many
- Process the app list in downstream nodes
Troubleshooting
Need Help?
If you encounter issues with the n8n integration, contact us on the Contact Page.