5.5. get_embedded_phrase_popularity

struct of integers get_embedded_phrase_popularity(
        string id,
        array of strings keyphrases,
        string case,
        boolean include_misspellings,
        boolean include_plurals,
        string adult_filter,
        integer max,
        integer timeout)

Parameters

id
The client access key supplied by Wordtracker.

keyphrases
Keyphrases to get counts for.

case
The only option is 'case_folded'.

include_misspellings
If true, generates misspellings on results.

include_plurals
If true, the keyphrases will generate plural forms.

adult_filter

The adult filter has four levels which can be set with the following flags:

off
No filtering applied. Adult terms will be included in the results.
remove_dubious
Removes all keywords unsuitable for presentations. This is the most aggressive filter and may occasionally remove clean terms.
remove_offensive
Removes offensive keywords.
adult_only
Only displays adult terms.

The following flags have been deprecated: 'include_adult' and 'exclude_adult'.

This filter is applied to the results before they are returned to you.

max
The maximum number of results returned. A zero means all possible results, but this will usually be restricted by the account.

timeout
The cut off time in seconds for the current RPC call.

Description

Enter a seed keyphrase and Wordtracker will generate a hash of keywords and counts from our database of 350 million Dogpile / Metacrawler searches from the last three months. Since this is an 'embedded_phrase' query, the embedded phrase must appear somewhere inside the result as is. E.g. 'bill clinton' will return 'the bill clinton house', but not 'the clinton bill house'.

KeyphrasePopularity
bill clinton103
the bill clinton house98

if include_misspellings is true, then results from the Wordtracker database will also generate a list of popular mis-spelled forms.

If include_plurals is true, then all search terms will also generate additional plural search forms before submission to the Wordtracker database. For example, the search term foot will also include a search for feet.

There are three ways to deal with adult terms. You may exclude them completely with 'exclude_adult'; include them as well with 'include_adult'; or fetch adult terms by themselves with 'adult_only'.

The max parameter specifies the maximum number of results returned. The upper limit is restricted according to the account.

The timeout parameter specifies the cut off time in seconds. The upper limit is restricted according to the account.

If is_adult_filtered is true, then all results will have adult keywords removed.