in src/main/scala/com/gu/fastly/api/FastlyApiClient.scala [179:183]
def stats(from: DateTime, to: DateTime, by: By.Value, region: Region.Value = Region.all): Future[Response] = {
val apiUrl = s"$fastlyApiUrl/stats"
val params = statsParams(from, to, by, region)
AsyncHttpExecutor.execute(apiUrl, headers = commonHeaders, parameters = params)
}