Get Developer Apps
curl --request GET \
--url https://scrapebadger.com/v1/app-store/developers/{developer_id} \
--header 'X-API-Key: <x-api-key>'import requests
url = "https://scrapebadger.com/v1/app-store/developers/{developer_id}"
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/developers/{developer_id}', 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/developers/{developer_id}",
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/developers/{developer_id}"
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/developers/{developer_id}")
.header("X-API-Key", "<x-api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://scrapebadger.com/v1/app-store/developers/{developer_id}")
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{
"country": "<string>",
"developer": {
"developer_id": 123,
"name": "<string>",
"developer_type": "<string>",
"url": "<string>"
},
"result_count": 123,
"apps": [
{}
]
}Endpoints
Get Developer Apps
An App Store developer and every app they publish in a storefront.
GET
/
v1
/
app-store
/
developers
/
{developer_id}
Get Developer Apps
curl --request GET \
--url https://scrapebadger.com/v1/app-store/developers/{developer_id} \
--header 'X-API-Key: <x-api-key>'import requests
url = "https://scrapebadger.com/v1/app-store/developers/{developer_id}"
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/developers/{developer_id}', 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/developers/{developer_id}",
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/developers/{developer_id}"
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/developers/{developer_id}")
.header("X-API-Key", "<x-api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://scrapebadger.com/v1/app-store/developers/{developer_id}")
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{
"country": "<string>",
"developer": {
"developer_id": 123,
"name": "<string>",
"developer_type": "<string>",
"url": "<string>"
},
"result_count": 123,
"apps": [
{}
]
}A developer and their catalogue in one call — Apple mixes a single
artist
entry in with the software entries, and this route splits them.
Credits: 5
Authorization
string
required
Your ScrapeBadger API key.
Path Parameters
string
required
Numeric artist id, e.g.
284882218. Take it from developer_id on any app
record. Non-numeric values are rejected with 400.Query Parameters
string
default:"us"
Storefront code, lowercase ISO 3166-1 alpha-2.
integer
default:"50"
Apps to return,
1–200.Response
string
integer
Apps returned.
App[]
The developer’s apps — same shape as
search results.
Example
curl "https://scrapebadger.com/v1/app-store/developers/284882218?country=us&limit=50" \
-H "X-API-Key: YOUR_API_KEY"
const res = await fetch(
"https://scrapebadger.com/v1/app-store/developers/284882218?" +
new URLSearchParams({ country: "us", limit: "50" }),
{ headers: { "X-API-Key": process.env.SCRAPEBADGER_API_KEY } },
);
const { developer, apps } = await res.json();
import requests
res = requests.get(
"https://scrapebadger.com/v1/app-store/developers/284882218",
headers={"X-API-Key": "YOUR_API_KEY"},
params={"country": "us", "limit": 50},
)
data = res.json()
Response
{
"country": "us",
"developer": {
"developer_id": 284882218,
"name": "Meta Platforms, Inc.",
"developer_type": "software",
"url": "https://apps.apple.com/us/developer/meta-platforms-inc/id284882218"
},
"result_count": 9,
"apps": [
{
"app_id": 284882215,
"bundle_id": "com.facebook.Facebook",
"name": "Facebook",
"url": "https://apps.apple.com/us/app/facebook/id284882215",
"developer_id": 284882218,
"developer_name": "Meta Platforms, Inc.",
"price": 0.0,
"currency": "USD",
"formatted_price": "Free",
"rating": 4.1,
"rating_count": 15602118,
"version": "526.0",
"minimum_os_version": "15.1",
"file_size_bytes": 358612992,
"content_rating": "12+",
"genres": ["Social Networking"],
"genre_ids": [6005],
"icon_url": "https://is1-ssl.mzstatic.com/image/thumb/facebook/512x512bb.jpg",
"current_version_release_date_at": "2026-08-10T00:00:00Z"
}
]
}
Errors
| Status | Meaning |
|---|---|
400 | Non-numeric developer id, or malformed country. |
404 | No such developer in that storefront. |
429 | Apple is throttling — retry shortly. |
⌘I

