Skip to main content
POST
/
api
/
google
/
play
/
developers
/google/play/developers
curl --request POST \
  --url https://api.anysite.io/api/google/play/developers \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "developer": "<string>",
  "count": 2,
  "timeout": 300
}
'
[
  {
    "id": "<string>",
    "name": "<string>",
    "@type": "@google_play_developer",
    "description": "<string>",
    "website": "<string>",
    "image": "<string>",
    "cover": "<string>",
    "app_count": 123,
    "apps": []
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
developer
string
required

Developer name or numeric developer id

Minimum string length: 1
Examples:

"Google LLC"

"Supercell"

"5700313618786177705"

count
integer
required

Max number of developer apps to return

Required range: x >= 1
timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

id
string
required
name
string
required
@type
string
default:@google_play_developer
description
string | null
website
string | null
image
string | null
cover
string | null
app_count
integer | null
apps
GooglePlayDeveloperApp · object[]