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 App Store search suggestions API Playground
Returns suggested search terms for the given partial keyword.
GETapiKey1 credit/requestappstore.suggestResponseDocAppStore
Endpoint details
Returns suggested search terms for the given partial keyword.
- Method
- GET
- Path
- /appstore/suggest/{term}
- Authentication
- apiKey
- Credit cost
- 1 credit/request
- Platform
- AppStore
- Parameters
- 3 documented fields
Request parameters
term:pathcountry:queryx-api-key:header
Response schema fields
codedatadata[].termmsg
Sample response summary
{
"code": 200,
"msg": "OK",
"data": [
{
"term": "chatgpt"
},
{
"term": "chatgpt widget"
}
]
}cURL example
curl "https://api.crawlora.net/api/v1/appstore/suggest/<term>" \
-H "x-api-key: <api-key>"