Public Playground

Preview the endpoint before sending a live request

Sample responses, schemas, request previews, and code snippets are visible before sign in. Create an account when you are ready to save an API key and run authenticated requests.

Playground

Retrieve Google Play query suggestions API Playground

Returns up to 10 suggestions for a search term.

GETapiKey1 credit/requestgoogleplay.suggestResponseDocGooglePlay

Endpoint

Choose one catalog endpoint for this request.

10 shown
GETapiKey1 credit/requestgoogleplay.suggestResponseDocGooglePlay
GET /googleplay/suggest/{term}

Retrieve Google Play query suggestions

Returns up to 10 suggestions for a search term.

API key required. Paste a full key or rotate one from the API Keys page.

Set up API key
View docs

API key

API key required for live requests. Your key is only used to send requests from this Playground.

not configured

Active Playground key: not configured

Manage API keys in Console

Path parameters

Add an API key to send a live request.

If an active API key is configured, Copy cURL includes it. Share links never include API keys.

View docs
Sample responseGET

Shown before your first request. Add an API key and send a request to see the live response, status, latency, and headers.

{
  "code": 200,
  "msg": "OK",
  "data": [
    {
      "term": "chatgpt"
    },
    {
      "term": "chatgpt assistant"
    }
  ]
}

Endpoint details

Returns up to 10 suggestions for a search term.

Method
GET
Path
/googleplay/suggest/{term}
Authentication
apiKey
Credit cost
1 credit/request
Platform
GooglePlay
Parameters
4 documented fields

Request parameters

term:pathcountry:querylang:queryx-api-key:header

Response schema fields

codedatadata[].termmsg

Sample response summary

{
  "code": 200,
  "msg": "OK",
  "data": [
    {
      "term": "chatgpt"
    },
    {
      "term": "chatgpt assistant"
    }
  ]
}

cURL example

curl "https://api.crawlora.net/api/v1/googleplay/suggest/<term>" \
  -H "x-api-key: <api-key>"