I'm, trying to download some Google Analytics data from their API. I can download my visitors number.
When you use the Google Analytics webpage you can see a percents of Changes in visits, but how do I get that info from their API?

I could try to calculate it by my self, but I have no idea of what algorithm they use.
More info about the API can be found here. Data Feed Query Explorer
edit
Final formula
Visits over the last 30 days
StartDate = today.Year, today.Month - 1, today.Day
EndDate = today.Year, today.Month, today.Day - 1
Visits between 31 and 60 days ago
StartDate = today.Year, today.Month - 2, today.Day
EndDate = today.Year, today.Month -1, today.Day - 1
