Get App Reviews
curl --request GET \
--url https://scrapebadger.com/v1/app-store/apps/{app_id}/reviews \
--header 'X-API-Key: <x-api-key>'import requests
url = "https://scrapebadger.com/v1/app-store/apps/{app_id}/reviews"
headers = {"X-API-Key": "<x-api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-API-Key': '<x-api-key>'}};
fetch('https://scrapebadger.com/v1/app-store/apps/{app_id}/reviews', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://scrapebadger.com/v1/app-store/apps/{app_id}/reviews",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"X-API-Key: <x-api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://scrapebadger.com/v1/app-store/apps/{app_id}/reviews"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("X-API-Key", "<x-api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://scrapebadger.com/v1/app-store/apps/{app_id}/reviews")
.header("X-API-Key", "<x-api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://scrapebadger.com/v1/app-store/apps/{app_id}/reviews")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["X-API-Key"] = '<x-api-key>'
response = http.request(request)
puts response.read_body{
"app_id": "<string>",
"country": "<string>",
"page": 123,
"sort": "<string>",
"result_count": 123,
"reviews": [
{
"review_id": "<string>",
"user_name": "<string>",
"user_url": "<string>",
"title": "<string>",
"content": "<string>",
"rating": 123,
"version": "<string>",
"vote_sum": 123,
"vote_count": 123,
"updated_utc": 123,
"updated_at": "<string>"
}
]
}Endpoints
Get App Reviews
Customer reviews for an App Store app — 50 per page, pages 1-10, most recent or most helpful.
GET
/
v1
/
app-store
/
apps
/
{app_id}
/
reviews
Get App Reviews
curl --request GET \
--url https://scrapebadger.com/v1/app-store/apps/{app_id}/reviews \
--header 'X-API-Key: <x-api-key>'import requests
url = "https://scrapebadger.com/v1/app-store/apps/{app_id}/reviews"
headers = {"X-API-Key": "<x-api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-API-Key': '<x-api-key>'}};
fetch('https://scrapebadger.com/v1/app-store/apps/{app_id}/reviews', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://scrapebadger.com/v1/app-store/apps/{app_id}/reviews",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"X-API-Key: <x-api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://scrapebadger.com/v1/app-store/apps/{app_id}/reviews"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("X-API-Key", "<x-api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://scrapebadger.com/v1/app-store/apps/{app_id}/reviews")
.header("X-API-Key", "<x-api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://scrapebadger.com/v1/app-store/apps/{app_id}/reviews")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["X-API-Key"] = '<x-api-key>'
response = http.request(request)
puts response.read_body{
"app_id": "<string>",
"country": "<string>",
"page": 123,
"sort": "<string>",
"result_count": 123,
"reviews": [
{
"review_id": "<string>",
"user_name": "<string>",
"user_url": "<string>",
"title": "<string>",
"content": "<string>",
"rating": 123,
"version": "<string>",
"vote_sum": 123,
"vote_count": 123,
"updated_utc": 123,
"updated_at": "<string>"
}
]
}Customer reviews for an app — 50 per page, pages 1 to 10, per storefront.
Credits: 5
Authorization
string
required
Your ScrapeBadger API key.
Path Parameters
string
required
Numeric track id, e.g.
310633997. Apple’s review feed has no bundle-id
form — a bundle id here returns 400. Resolve it through
/apps/{bundle_id} and use the
app_id from that response.Query Parameters
string
default:"us"
Storefront code, lowercase ISO 3166-1 alpha-2.
integer
default:"1"
Page number,
1–10. Apple hard-rejects page 11+, so the ceiling is
enforced here with a clear error instead of an upstream failure.string
default:"mostRecent"
mostRecent or mostHelpful.Response
string
string
Storefront the reviews came from.
integer
string
integer
Reviews in this page.
Review[]
Example
curl "https://scrapebadger.com/v1/app-store/apps/310633997/reviews?country=us&page=1&sort=mostRecent" \
-H "X-API-Key: YOUR_API_KEY"
const res = await fetch(
"https://scrapebadger.com/v1/app-store/apps/310633997/reviews?" +
new URLSearchParams({ country: "us", page: "1", sort: "mostHelpful" }),
{ headers: { "X-API-Key": process.env.SCRAPEBADGER_API_KEY } },
);
const { reviews } = await res.json();
import requests
res = requests.get(
"https://scrapebadger.com/v1/app-store/apps/310633997/reviews",
headers={"X-API-Key": "YOUR_API_KEY"},
params={"country": "us", "page": 1, "sort": "mostRecent"},
)
reviews = res.json()["reviews"]
Response
{
"app_id": "310633997",
"country": "us",
"page": 1,
"sort": "mostRecent",
"result_count": 50,
"reviews": [
{
"review_id": "11284763055",
"user_name": "dana_in_dc",
"user_url": "https://itunes.apple.com/us/reviews?userProfileId=1043201991",
"title": "Rock solid for international calls",
"content": "Voice quality is consistently better than anything else I've tried abroad.",
"rating": 5,
"version": "26.16.72",
"vote_sum": 12,
"vote_count": 14,
"updated_utc": 1754956800.0,
"updated_at": "2026-08-12T00:00:00Z"
}
]
}
Reviews are per-storefront: the
us and de feeds for one app are
different review sets, not translations of one set. Sweep the storefronts you
care about rather than assuming us covers them.Errors
| Status | Meaning |
|---|---|
400 | Non-numeric app id, page above 10, unknown sort, or malformed country. |
404 | No review feed for that app in that storefront. |
429 | Apple is throttling — retry shortly. |
⌘I

