Application Search Ads suggestions (App Store only)

Returns application search ads suggestions
Only for AppStore

GET /api/search-ads-suggestions

Query parameters

Mandatory

  • storeid - store id of app (for example com.google.android.apps.maps or 585027354)

  • country - country ISO code (ex.: US, RU, GB etc.)

Example request

GET /api/search-ads-suggestions?country=RU&storeid=368677368

If we have all required information for this request, you will get following response:

Status: 200 OK

{
    "id": <string>,  // request id for technical support purposes
    "data": {
        "timestamp": <string>,  // ISO format timestamp of results,
        "storeid": <string>,  // same as specified in query params,
        "country": <string>,  // same as specified in query params,
        "results" {
            "suggestions": [{
                "keyword": <string>,
                "rank": <integer>, // rank (0 for application absence)
                "popularity": <integer>, // search ads popularity
                "users_per_day": <integer>  // estimated daily impressions for given keyword
            }]
        }
    }
}

If we need to download some additional data from store’s servers, you will get following response:

Status: 202 Accepted

{
    "key": <string>,  //request key for technical support purposes
    "detail": "Result is preparing, try in 30 seconds later"
}

So, try in 30 seconds later and if response will be ready you will get full data.

If store’s servers got no required data or we don’t have required data, you will get following response:

Status: 204 No Content

You may try later to get expected data.