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.
| Version: | 2 |
| Quota Point Cost: | 20 |
http://api.adgooroo.com/v2/SEMInsight/GetNaturalGroupData.api?searchengineid=1®ionid=1&keywordgroupid=1&enddate=5%2f5%2f2011
// 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