Skip to content
Advertisement

Google Analytics SEO – PHP API

I have a PHP file which give’s me google analytics data, such as pageviews, Top Pages, or Organic Data simple stuff.

Now I neet to get Stuff from the SEO Part.

For example: TOP 50 Search Keywords (with Impression and Clicks)

I can’t find any help in the API how to get these values.

this is a example of my api call:

$params = array(
    'dimensions' => array('date', 'pagePath', 'pageTitle'),
    'metrics' => array('sessions', 'pageviews'),
    'sort' => '-ga:sessions',
    'filters' => null,
    'startdate' => $startdate,
    'enddate' => $enddate,
    'startindex' => null,
    'limit' => 25,
    'mapping' => array('pagepath' => 'pagepath', 'pagetitle' => 'pagetitle', 'sessions' => 'visits', 'pageviews' => 'pageviews'),
);

$results = $this->service->data_ga->get($this->profile, $params['startdate'], $params['enddate'], $metrics, $optParams);

Advertisement

Answer

The search engine optimization data shown in Google Analytics actually comes from Google Search Console (Webmaster Tools) and is available from the Google Search Console API. https://developers.google.com/webmaster-tools/?hl=en

User contributions licensed under: CC BY-SA
3 People found this is helpful
Advertisement