New
We've now importing Apple's financial reports by state, storing them in the archive, and making the data available in the API.
This additions makes it possible to see your monthly revenue and other financial information from the US and Canada by state.
To get data by state simply use group_by=state:
GET /reports/sales/?group_by=state&dataset=financial
{
"NY": {
"revenue": "67.98",
...
},
"WA": {
"revenue": "33.99",
...
}
}
Check out the API documentation for more information on this route.
By state reports are imported automatically for all accounts and are being stored in the Archive.
👉 Support for revenue by state is currently only available in the API but will be added to reports on the site in the future.





