The standard Piwik Analytics APIs return raw data, for example: visits, page views, revenue, conversions.
The Metadata API is the service that calls other APIs, then add more metadata around it, for example, it will:
The Piwik Metadata API provides a simple entry point to get this additional information for most Piwik API functions returning analytics data.
The method API.getProcessedReport can be called to request the full data set (metadata, column names, report data) of a given Piwik report. The response contains:
For example, if you want to display the top five countries that visitors come from you would build the API Request as follows:
The returned XML is:
<?xml version="1.0" encoding="utf-8" ?> <result> <website>virtual-drums.com</website> <prettyDate>Saturday 18 May 2013</prettyDate> <metadata> <category>Visitors</category> <name>Country</name> <module>UserCountry</module> <action>getCountry</action> <dimension>Country</dimension> <metrics> <nb_visits>Visits</nb_visits> <nb_uniq_visitors>Unique visitors</nb_uniq_visitors> <nb_actions>Actions</nb_actions> </metrics> <processedMetrics> <nb_actions_per_visit>Actions per Visit</nb_actions_per_visit> <avg_time_on_site>Avg. Time on Website</avg_time_on_site> <bounce_rate>Bounce Rate</bounce_rate> </processedMetrics> <metricsDocumentation> <nb_visits>If a visitor comes to your website for the first time or if he visits a page more than 30 minutes after his last page view, this will be recorded as a new visit.</nb_visits> <nb_uniq_visitors>The number of unduplicated visitors coming to your website. Every user is only counted once, even if he visits the website multiple times a day.</nb_uniq_visitors> <nb_actions>The number of actions performed by your visitors. Actions can be page views, internal site searches, downloads or outlinks.</nb_actions> <nb_actions_per_visit>The average number of actions (page views, site searches, downloads or outlinks) that were performed during the visits.</nb_actions_per_visit> <avg_time_on_site>The average duration of a visit.</avg_time_on_site> <bounce_rate>The percentage of visits that only had a single pageview. This means, that the visitor left the website directly from the entrance page.</bounce_rate> <conversion_rate>The percentage of visits that triggered a goal conversion.</conversion_rate> <avg_time_on_page>The average amount of time visitors spent on this page (only the page, not the entire website).</avg_time_on_page> <nb_hits>The number of times this page was visited.</nb_hits> <exit_rate>The percentage of visits that left the website after viewing this page.</exit_rate> </metricsDocumentation> <metricsGoal> <nb_conversions>Conversions</nb_conversions> <revenue>Revenue</revenue> </metricsGoal> <processedMetricsGoal> <revenue_per_visit>Revenue per Visit</revenue_per_visit> </processedMetricsGoal> <imageGraphUrl>index.php?module=API&method=ImageGraph.get&idSite=3&apiModule=UserCountry&apiAction=getCountry&token_auth=anonymous&period=day&date=yesterday</imageGraphUrl> <imageGraphEvolutionUrl>index.php?module=API&method=ImageGraph.get&idSite=3&apiModule=UserCountry&apiAction=getCountry&token_auth=anonymous&period=day&date=2013-04-19,2013-05-18</imageGraphEvolutionUrl> <uniqueId>UserCountry_getCountry</uniqueId> </metadata> <columns> <label>Country</label> <nb_visits>Visits</nb_visits> <nb_uniq_visitors>Unique visitors</nb_uniq_visitors> <nb_actions>Actions</nb_actions> <nb_actions_per_visit>Actions per Visit</nb_actions_per_visit> <avg_time_on_site>Avg. Time on Website</avg_time_on_site> <bounce_rate>Bounce Rate</bounce_rate> <revenue>Revenue</revenue> </columns> <reportData> <row> <label>United States</label> <nb_uniq_visitors>13</nb_uniq_visitors> <nb_visits>13</nb_visits> <nb_actions>22</nb_actions> <nb_actions_per_visit>1.69</nb_actions_per_visit> <avg_time_on_site>00:01:02</avg_time_on_site> <bounce_rate>61.54%</bounce_rate> <revenue>$ 0</revenue> </row> <row> <label>France</label> <nb_uniq_visitors>2</nb_uniq_visitors> <nb_visits>2</nb_visits> <nb_actions>2</nb_actions> <nb_actions_per_visit>1</nb_actions_per_visit> <avg_time_on_site>00:00:00</avg_time_on_site> <bounce_rate>100%</bounce_rate> <revenue>$ 0</revenue> </row> <row> <label>United Kingdom</label> <nb_uniq_visitors>2</nb_uniq_visitors> <nb_visits>2</nb_visits> <nb_actions>2</nb_actions> <nb_actions_per_visit>1</nb_actions_per_visit> <avg_time_on_site>00:00:00</avg_time_on_site> <bounce_rate>100%</bounce_rate> <revenue>$ 0</revenue> </row> <row> <label>Mexico</label> <nb_uniq_visitors>2</nb_uniq_visitors> <nb_visits>2</nb_visits> <nb_actions>3</nb_actions> <nb_actions_per_visit>1.5</nb_actions_per_visit> <avg_time_on_site>00:00:24</avg_time_on_site> <bounce_rate>50%</bounce_rate> <revenue>$ 0</revenue> </row> <row> <label>Philippines</label> <nb_uniq_visitors>2</nb_uniq_visitors> <nb_visits>2</nb_visits> <nb_actions>5</nb_actions> <nb_actions_per_visit>2.5</nb_actions_per_visit> <avg_time_on_site>00:00:30</avg_time_on_site> <bounce_rate>50%</bounce_rate> <revenue>$ 0</revenue> </row> <row> <label>Others</label> <nb_uniq_visitors>15</nb_uniq_visitors> <nb_visits>15</nb_visits> <nb_actions>19</nb_actions> <nb_actions_per_visit>1.27</nb_actions_per_visit> <avg_time_on_site>00:00:08</avg_time_on_site> <bounce_rate>73.33%</bounce_rate> <revenue>$ 0</revenue> </row> </reportData> <reportMetadata> <row> <code>us</code> <logo>plugins/UserCountry/flags/us.png</logo> <logoWidth>16</logoWidth> <logoHeight>11</logoHeight> </row> <row> <code>fr</code> <logo>plugins/UserCountry/flags/fr.png</logo> <logoWidth>16</logoWidth> <logoHeight>11</logoHeight> </row> <row> <code>gb</code> <logo>plugins/UserCountry/flags/gb.png</logo> <logoWidth>16</logoWidth> <logoHeight>11</logoHeight> </row> <row> <code>mx</code> <logo>plugins/UserCountry/flags/mx.png</logo> <logoWidth>16</logoWidth> <logoHeight>11</logoHeight> </row> <row> <code>ph</code> <logo>plugins/UserCountry/flags/ph.png</logo> <logoWidth>16</logoWidth> <logoHeight>11</logoHeight> </row> <row> <logoWidth>16</logoWidth> <logoHeight>11</logoHeight> </row> </reportMetadata> <timerMillis>40</timerMillis> </result>
The API method API.getReportMetadata can be called to request the full list of API functions returning web analytics reports – see the example output on the Piwik demo.
There are two types of reports in Piwik, and each have a slightly different format.
Simple Metrics reports simply contain a list of metrics and their values. For example, VisitsSummary.get returns the main metrics (visits, pages, unique visitors) for the specified website (example URL).
<?xml version="1.0" encoding="utf-8" ?> <result> <row> <category>Visits Summary</category> <name>Visits Summary</name> <module>VisitsSummary</module> <action>get</action> <metrics> <nb_uniq_visitors>Unique visitors</nb_uniq_visitors> <nb_visits>Visits</nb_visits> <nb_actions>Actions</nb_actions> <nb_actions_per_visit>Actions per Visit</nb_actions_per_visit> <bounce_rate>Bounce Rate</bounce_rate> <avg_time_on_site>Avg. Visit Duration (in seconds)</avg_time_on_site> <max_actions>Maximum actions in one visit</max_actions> </metrics> <metricsDocumentation> <nb_visits>If a visitor comes to your website for the first time or if he visits a page more than 30 minutes after his last page view, this will be recorded as a new visit.</nb_visits> <nb_uniq_visitors>The number of unduplicated visitors coming to your website. Every user is only counted once, even if he visits the website multiple times a day.</nb_uniq_visitors> <nb_actions>The number of actions performed by your visitors. Actions can be page views, internal site searches, downloads or outlinks.</nb_actions> <nb_actions_per_visit>The average number of actions (page views, site searches, downloads or outlinks) that were performed during the visits.</nb_actions_per_visit> <avg_time_on_site>The average duration of a visit.</avg_time_on_site> <bounce_rate>The percentage of visits that only had a single pageview. This means, that the visitor left the website directly from the entrance page.</bounce_rate> <conversion_rate>The percentage of visits that triggered a goal conversion.</conversion_rate> <avg_time_on_page>The average amount of time visitors spent on this page (only the page, not the entire website).</avg_time_on_page> <nb_hits>The number of times this page was visited.</nb_hits> <exit_rate>The percentage of visits that left the website after viewing this page.</exit_rate> </metricsDocumentation> <imageGraphUrl>index.php?module=API&method=ImageGraph.get&idSite=3&apiModule=VisitsSummary&apiAction=get&token_auth=anonymous&period=day&date=2013-04-20,2013-05-19</imageGraphUrl> <imageGraphEvolutionUrl>index.php?module=API&method=ImageGraph.get&idSite=3&apiModule=VisitsSummary&apiAction=get&token_auth=anonymous&period=day&date=2013-04-20,2013-05-19</imageGraphEvolutionUrl> <uniqueId>VisitsSummary_get</uniqueId> </row> </result>
Most reports, however, will have a ‘dimension’ entry in the returned array. Reports with dimensions will display a list of metrics for each ‘dimension’. For example, the list of visits, pages, time on site will be output for each keyword.
Example of a report with dimensions metadata (example URL):
<?xml version="1.0" encoding="utf-8" ?> <result> <row> <category>Referrers</category> <name>Keywords</name> <module>Referers</module> <action>getKeywords</action> <actionToLoadSubTables>getSearchEnginesFromKeywordId</actionToLoadSubTables> <dimension>Keyword</dimension> <documentation>This report shows which keywords users were searching for before they were referred to your website. <br /> By clicking on a row in the table, you can see the distribution of search engines that were queried for the keyword.</documentation> <metrics> <nb_visits>Visits</nb_visits> <nb_uniq_visitors>Unique visitors</nb_uniq_visitors> <nb_actions>Actions</nb_actions> </metrics> <processedMetrics> <nb_actions_per_visit>Actions per Visit</nb_actions_per_visit> <avg_time_on_site>Avg. Time on Website</avg_time_on_site> <bounce_rate>Bounce Rate</bounce_rate> </processedMetrics> <metricsDocumentation> <nb_visits>If a visitor comes to your website for the first time or if he visits a page more than 30 minutes after his last page view, this will be recorded as a new visit.</nb_visits> <nb_uniq_visitors>The number of unduplicated visitors coming to your website. Every user is only counted once, even if he visits the website multiple times a day.</nb_uniq_visitors> <nb_actions>The number of actions performed by your visitors. Actions can be page views, internal site searches, downloads or outlinks.</nb_actions> <nb_actions_per_visit>The average number of actions (page views, site searches, downloads or outlinks) that were performed during the visits.</nb_actions_per_visit> <avg_time_on_site>The average duration of a visit.</avg_time_on_site> <bounce_rate>The percentage of visits that only had a single pageview. This means, that the visitor left the website directly from the entrance page.</bounce_rate> <conversion_rate>The percentage of visits that triggered a goal conversion.</conversion_rate> <avg_time_on_page>The average amount of time visitors spent on this page (only the page, not the entire website).</avg_time_on_page> <nb_hits>The number of times this page was visited.</nb_hits> <exit_rate>The percentage of visits that left the website after viewing this page.</exit_rate> </metricsDocumentation> <metricsGoal> <nb_conversions>Conversions</nb_conversions> <revenue>Revenue</revenue> </metricsGoal> <processedMetricsGoal> <revenue_per_visit>Revenue per Visit</revenue_per_visit> </processedMetricsGoal> <imageGraphUrl>index.php?module=API&method=ImageGraph.get&idSite=3&apiModule=Referers&apiAction=getKeywords&token_auth=anonymous&period=day&date=today</imageGraphUrl> <imageGraphEvolutionUrl>index.php?module=API&method=ImageGraph.get&idSite=3&apiModule=Referers&apiAction=getKeywords&token_auth=anonymous&period=day&date=2013-04-20,2013-05-19</imageGraphEvolutionUrl> <uniqueId>Referers_getKeywords</uniqueId> </row> </result>
In the metadata output, the field <imageGraphUrl> is a URL that will generate a static PNG graph plotting data for the requested report. Static PNG graphs are used, for example, in the Piwik mobile app and in email reports. These static image graphs can also be used in any custom dashboard, web page, monitoring page, email, etc. As opposed to the Piwik Widgets, static image graphs do not require JavaScript or HTML, since the URL returns a PNG image.
In the following examples, to see the URL used to generate the image, right-click on the image and select “view image” to see the full URL.
URL = index.php?module=API&method=ImageGraph.get&idSite=3&apiModule=VisitsSummary&apiAction=get&token_auth=anonymous&graphType=evolution&period=day&date=previous30&width=500&height=250
URL = index.php?module=API&method=ImageGraph.get&idSite=3&apiModule=UserSettings&apiAction=getBrowser&token_auth=anonymous&graphType=horizontalBar&period=month&date=today&width=500&height=250
URL = index.php?module=API&method=ImageGraph.get&idSite=3&apiModule=UserSettings&apiAction=getResolution&token_auth=anonymous&graphType=verticalBar&period=month&date=today&width=500&height=250
URL = index.php?module=API&method=ImageGraph.get&idSite=3&apiModule=UserSettings&apiAction=getResolution&token_auth=anonymous&graphType=verticalBar&period=month&date=today&width=500&height=250
URL = index.php?module=API&method=ImageGraph.get&idSite=7&apiModule=UserSettings&apiAction=getOS&token_auth=anonymous&graphType=pie&period=month&date=today&width=500&height=250&column=nb_visits&colors=FFFF00,00FF00,FF0000,0000FF,555555,C3590D
The static Graphs API requires the standard Piwik parameters (idSite, date, period, etc.) but also accepts the following parameters:
English
Feedback on this page
Have you found an error in this page, or do you think some information is missing or not clear? We appreciate you taking the time to send us your suggestions and feedback on this page.