I'm trying to get daily visits from my instance of piwik for every day in the week.

Currently this query is returning the sum of all my visits for the entire week. Is there any way to separate this out into days?

http://piwikexample.com/?module=API&method=VisitsSummary.getVisits&idSite=1&period=range&date=2011-08-18,2011-08-25&format=json&token_auth=#########
link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

Actually figured it out. What I was missing is:

lastX for the last X periods including today (eg &date=last10&period=day would return an entry for each of the last 10 days including today). This is relative to the website timezone.

From http://piwik.org/docs/analytics-api/reference/#API

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.