You are here

public function WordStream::getKeywordNiches in WordStream Keyword Tools 7

File

./class.wordstream.inc, line 79

Class

WordStream
A class to aid with accessing the Wordstream API

Code

public function getKeywordNiches($seeds, $maxResults = 100) {
  $response = $this
    ->callAPI('keywordtool/get_keyword_niches', array(
    'seeds' => $seeds,
    'max_results' => $maxResults,
    'session_id' => $this->session,
  ));
  if ($response->code != 'OK') {
    return false;
  }
  else {
    return $response->data;
  }
}