Key points
- Supports appId, count, language, country, and sort parameters.
- Structured review JSON works well for QA, sentiment, and competitor research workflows.
- The same authentication pattern works as the rest of the NovaDataHub API surface.
The Play Store Reviews API returns structured review records with rating, review text, author metadata, app version context, helpful votes, and developer replies for recurring feedback workflows.
curl -s -H "x-api-key: YOUR_API_KEY" "https://novadatahub.com/api/playstore/reviews?appId=com.spotify.music&count=50&sort=newest"import requests
url = 'https://novadatahub.com/api/playstore/reviews'
params = {'appId': 'com.spotify.music', 'count': 50, 'sort': 'newest'}
resp = requests.get(url, params=params, headers={'x-api-key': 'YOUR_API_KEY'}, timeout=60)
print(resp.json())using System.Net.Http.Json;
using System.Text.Json;
using var http = new HttpClient();
http.DefaultRequestHeaders.Add("x-api-key", "YOUR_API_KEY");
var json = await http.GetFromJsonAsync<JsonElement>("https://novadatahub.com/api/playstore/reviews?appId=com.spotify.music&count=50&sort=newest");
Console.WriteLine(json.ToString());{
"ok": true,
"appId": "com.spotify.music",
"reviews": [
{
"rating": 5,
"author": "Alice",
"text": "Love the new UI!",
"version": "8.9.0",
"date": "2026-05-10"
}
]
}Open the commercial overview page for ratings, review text, versions, and developer replies.
Open landing pageMap review rating, text, version, date, replies, and collection context into cleaner downstream models.
Open docsSee how to group reviews by version, surface complaint spikes, and support release QA workflows.
Open tutorialValidate review request parameters and inspect JSON before wiring release-monitoring or sentiment pipelines.
Open docsUse structured review data to detect regressions by version, complaint class, and trend change.
Open guideRead the comparison page for teams deciding between manual exports and API-based review collection.
Open comparison