Get Similar Apps
curl --request GET \
--url https://scrapebadger.com/v1/google-play/apps/{app_id}/similar \
--header 'X-API-Key: <x-api-key>'import requests
url = "https://scrapebadger.com/v1/google-play/apps/{app_id}/similar"
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/google-play/apps/{app_id}/similar', 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/google-play/apps/{app_id}/similar",
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/google-play/apps/{app_id}/similar"
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/google-play/apps/{app_id}/similar")
.header("X-API-Key", "<x-api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://scrapebadger.com/v1/google-play/apps/{app_id}/similar")
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{
"query": "<string>",
"url": "<string>",
"result_count": 123,
"apps": [
{}
]
}Endpoints
Get Similar Apps
The apps Google Play recommends alongside a given app.
GET
/
v1
/
google-play
/
apps
/
{app_id}
/
similar
Get Similar Apps
curl --request GET \
--url https://scrapebadger.com/v1/google-play/apps/{app_id}/similar \
--header 'X-API-Key: <x-api-key>'import requests
url = "https://scrapebadger.com/v1/google-play/apps/{app_id}/similar"
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/google-play/apps/{app_id}/similar', 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/google-play/apps/{app_id}/similar",
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/google-play/apps/{app_id}/similar"
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/google-play/apps/{app_id}/similar")
.header("X-API-Key", "<x-api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://scrapebadger.com/v1/google-play/apps/{app_id}/similar")
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{
"query": "<string>",
"url": "<string>",
"result_count": 123,
"apps": [
{}
]
}The “Similar apps” rail from the app’s detail page. Play caps that rail at
roughly a dozen entries; the full list behind its “See more” link is a cluster
page, addressable via
similar_apps_url on the
detail response.
Credits: 5
Authorization
string
required
Your ScrapeBadger API key.
Path Parameters
string
required
Android package id, e.g.
com.whatsapp.Query Parameters
string
default:"US"
Play storefront (
gl) — recommendations are storefront-specific.string
default:"en"
Play content language (
hl).Response
string
The
app_id the rail was read for.string
The Play URL the rail was read from.
integer
Apps returned.
AppCard[]
Recommended apps — same shape as
search results.
Example
curl "https://scrapebadger.com/v1/google-play/apps/com.whatsapp/similar?country=US" \
-H "X-API-Key: YOUR_API_KEY"
const res = await fetch(
"https://scrapebadger.com/v1/google-play/apps/com.whatsapp/similar?country=US",
{ headers: { "X-API-Key": process.env.SCRAPEBADGER_API_KEY } },
);
const { apps } = await res.json();
import requests
res = requests.get(
"https://scrapebadger.com/v1/google-play/apps/com.whatsapp/similar",
headers={"X-API-Key": "YOUR_API_KEY"},
params={"country": "US"},
)
apps = res.json()["apps"]
Response
{
"query": "com.whatsapp",
"url": "https://play.google.com/store/apps/details?id=com.whatsapp&hl=en&gl=US",
"result_count": 12,
"apps": [
{
"app_id": "org.telegram.messenger",
"title": "Telegram",
"developer": "Telegram FZ-LLC",
"summary": "Fast. Secure. Powerful.",
"icon": "https://play-lh.googleusercontent.com/telegram=w240-h480-rw",
"score": 4.3,
"score_text": "4.3",
"installs": "1,000,000,000+",
"genre": "Communication",
"content_rating": "Everyone",
"price": { "price": 0.0, "currency": "USD", "price_text": "Free", "is_free": true },
"url": "https://play.google.com/store/apps/details?id=org.telegram.messenger"
}
]
}
⌘I

