Skip to main content
POST
/
api
/
appstore
/
developers
/appstore/developers
curl --request POST \
  --url https://api.anysite.io/api/appstore/developers \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "artist": "<string>",
  "count": 100,
  "timeout": 300,
  "country": "us"
}
'
[
  {
    "id": 123,
    "name": "<string>",
    "@type": "@appstore_developer",
    "type": "<string>",
    "web_url": "<string>",
    "apps": []
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
artist
string
required

Developer artist ID or App Store developer URL

Minimum string length: 1
Examples:

"310634000"

"https://apps.apple.com/us/developer/whatsapp-inc/id310634000"

count
integer
required

Max number of developer apps to return

Required range: 1 <= x <= 200
timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500
country
enum<string>
default:us

App Store storefront country

Available options:
us,
gb,
ca,
au,
de,
fr,
it,
es,
nl,
se,
jp,
kr,
cn,
in,
br,
mx,
ru,
tr,
pl,
ae,
sa,
sg,
hk,
tw,
id,
th,
vn,
ph,
my,
za

Response

Successful Response

id
integer
required
name
string
required
@type
string
default:@appstore_developer
type
string | null
web_url
string | null
apps
AppstoreApp · object[]