Adgooroo API v2.0
Client Login
Home / SEMInsight / GetNaturalGroupData
Description
This method retrieves natural data for a keyword group, displayed by advertiser. This is the equivalent to the Natural Keyword Group Detail Report/Overall Rankings tab in SEM Insight. The domain, coverage, average position, estimateed monthly impressions, and estimated monthly clicks for each keyword group are retrieved.

Info
Version:2
Quota Point Cost:20

Parameters
InputNameRequiredTypeDescription
searchengineidyesInt32Data will be returned only for the search engine input here. Only one search engine ID can be entered. Use the GetSearchEngines method to retrieve a list of search engine IDs.
regionidyesInt32Data will be returned only for the region input here. Only one region ID can be entered. Use the GetRegions method to retrieve a list of region IDs.
keywordgroupidyesInt32Data will be returned only for the keyword group input here. Only one keyword group ID can be entered. Use the GetKeywordGroups method to retrieve a list of keyword group IDs.
enddatenoDateTimeThe end date for this report. Note: This value must be less than or equal to yesterday. The start date will be 30 days earlier.
outputnoStringThis parameter specifies the output format of the API call. Possible values are XML, CSV or JSON. Default is XML.
Note: Calling this API method will count against your monthly usage quota

Example Request
http://api.adgooroo.com/v2/SEMInsight/GetNaturalGroupData.api?searchengineid=1®ionid=1&keywordgroupid=1&enddate=5%2f5%2f2011

Example Output
// XML Output
<?xml version="1.0"?>
<api_result>
  <api_class>SEMInsight</api_class>
  <api_method>GetNaturalGroupData</api_method>
  <quota_cost>0</quota_cost>
  <status>SUCCESS</status>
  <message />
  <value>
    <row>
      <domain>google.com</domain>
      <coverage_percent>90</coverage_percent>
      <number_of_keywords>50</number_of_keywords>
      <estimated_monthly_impressions>5000</estimated_monthly_impressions>
      <estimated_monthly_clicks>2000</estimated_monthly_clicks>
    </row>
  </value>
</api_result>


// JSON Output
{
  "api_class": "SEMInsight",
  "api_method": "GetNaturalGroupData",
  "quota_cost": 0,
  "status": 0,
  "message": null,
  "value": {
    "row": [
      {
        "domain": "google.com",
        "coverage_percent": 90.0,
        "number_of_keywords": 50.0,
        "estimated_monthly_impressions": 5000.0,
        "estimated_monthly_clicks": 2000.0
      }
    ]
  }
}


// CSV Output
domain,coverage_percent,number_of_keywords,estimated_monthly_impressions,estimated_monthly_clicks
google.com,90,50,5000,2000