Do you all have an idea when historical monthly patterns will be accessible via the API, rather than just the most recent months?

Hi Victor or others who might know the answer to this question. Do you all have an idea when historical monthly patterns will be accessible via the API, rather than just the most recent months? We’re building out some scripts that make use of historical weekly patterns, but would prefer monthly patterns if that will be soon available?


This topic was automatically generated from Slack. You can find the original thread here.

soon! as in next week.

we pushed an update so off of search there is a call for monthly_patterns that will allow you to request multiple months of data.

query {
  search(filter: {
    address: { city: "San Francisco" region: "CA"}
    brand: "Blue Bottle Coffee"
  }) {
    monthly_patterns(start_date: "2021-01-01" end_date: "2021-12-31") {
      results {
        edges {
          node {
            placekey
            date_range_start
            raw_visit_counts
          }
        }
      }
    }
  }
}