Skip to main content
POST
/
api
/
google
/
play
/
apps
/
search
/google/play/apps/search
curl --request POST \
  --url https://api.anysite.io/api/google/play/apps/search \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "query": "<string>",
  "count": 15,
  "timeout": 300,
  "gl": "US",
  "hl": "en"
}
'
[
  {
    "package": "<string>",
    "name": "<string>",
    "url": "<string>",
    "@type": "@google_play_search_app",
    "developer": "<string>",
    "summary": "<string>",
    "rating": 123,
    "category": "<string>",
    "price": 123,
    "currency": "<string>",
    "install_count_display": "<string>",
    "content_rating": "<string>",
    "image": "<string>"
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
query
string
required

Search query

Minimum string length: 1
Examples:

"whatsapp"

"puzzle game"

count
integer
required

Max number of results to return

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

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500
gl
string
default:US

Region (ISO country code)

Required string length: 2
Examples:

"US"

"GB"

hl
string
default:en

Language (ISO code)

Required string length: 2 - 5
Examples:

"en"

"de"

Response

Successful Response

package
string
required
name
string
required
url
string
required
@type
string
default:@google_play_search_app
developer
string | null
summary
string | null
rating
number | null
category
string | null
price
number | null
currency
string | null
install_count_display
string | null
content_rating
string | null
image
string | null