Get Developer Apps
curl --request GET \
--url https://scrapebadger.com/v1/google-play/developers/{developer} \
--header 'X-API-Key: <x-api-key>'import requests
url = "https://scrapebadger.com/v1/google-play/developers/{developer}"
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/developers/{developer}', 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/developers/{developer}",
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/developers/{developer}"
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/developers/{developer}")
.header("X-API-Key", "<x-api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://scrapebadger.com/v1/google-play/developers/{developer}")
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 Developer Apps
A Google Play developer’s published apps, by numeric developer id or display name.
GET
/
v1
/
google-play
/
developers
/
{developer}
Get Developer Apps
curl --request GET \
--url https://scrapebadger.com/v1/google-play/developers/{developer} \
--header 'X-API-Key: <x-api-key>'import requests
url = "https://scrapebadger.com/v1/google-play/developers/{developer}"
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/developers/{developer}', 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/developers/{developer}",
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/developers/{developer}"
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/developers/{developer}")
.header("X-API-Key", "<x-api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://scrapebadger.com/v1/google-play/developers/{developer}")
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": [
{}
]
}A developer’s published apps. Play serves developer pages on two different
paths and picks by id type —
/store/apps/dev for the numeric id,
/store/apps/developer for the display name — so this route chooses the path
from the id shape rather than making you know which one you hold.
Credits: 5
Authorization
string
required
Your ScrapeBadger API key.
Path Parameters
string
required
Either the numeric id from an app’s
developer.developer_id
(e.g. 5700313618786177705) or the display name from developer.name
(e.g. WhatsApp LLC). URL-encode names containing spaces.Query Parameters
string
default:"US"
Play storefront (
gl).string
default:"en"
Play content language (
hl).Response
string
The developer id or name requested.
string
The Play URL the catalogue was read from.
integer
Apps returned.
AppCard[]
The developer’s apps — same shape as
search results.
Example
curl "https://scrapebadger.com/v1/google-play/developers/5700313618786177705?country=US" \
-H "X-API-Key: YOUR_API_KEY"
const res = await fetch(
"https://scrapebadger.com/v1/google-play/developers/" +
encodeURIComponent("WhatsApp LLC") +
"?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/developers/5700313618786177705",
headers={"X-API-Key": "YOUR_API_KEY"},
params={"country": "US"},
)
apps = res.json()["apps"]
Response
{
"query": "5700313618786177705",
"url": "https://play.google.com/store/apps/dev?id=5700313618786177705&hl=en&gl=US",
"result_count": 3,
"apps": [
{
"app_id": "com.whatsapp",
"title": "WhatsApp Messenger",
"developer": "WhatsApp LLC",
"score": 4.3,
"installs": "10,000,000,000+",
"genre": "Communication",
"price": { "price": 0.0, "currency": "USD", "price_text": "Free", "is_free": true },
"url": "https://play.google.com/store/apps/details?id=com.whatsapp"
},
{
"app_id": "com.whatsapp.w4b",
"title": "WhatsApp Business",
"developer": "WhatsApp LLC",
"score": 4.2,
"installs": "500,000,000+",
"genre": "Business",
"price": { "price": 0.0, "currency": "USD", "price_text": "Free", "is_free": true },
"url": "https://play.google.com/store/apps/details?id=com.whatsapp.w4b"
}
]
}
Play server-renders only the first rail of a large catalogue — around 10 apps
for a publisher with dozens. The rest load on scroll behind a cluster RPC
Google has closed off, so they are not reachable.
Errors
| Status | Meaning |
|---|---|
404 | No apps for that developer in the storefront — usually a wrong id form. |
422 | Play returned no usable data — not billed. Retry. |

