diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -4,6 +4,10 @@
 The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
 and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html)
 
+## 0.52.2
+### Fixed
+- Blockchain.info raw address limit should use `limit` parametre and not `n`.
+
 ## 0.52.1
 ### Changed
 - Stream multiple transactions when requested.
diff --git a/haskoin-store.cabal b/haskoin-store.cabal
--- a/haskoin-store.cabal
+++ b/haskoin-store.cabal
@@ -4,10 +4,10 @@
 --
 -- see: https://github.com/sol/hpack
 --
--- hash: 05d6d6bcf4ce4c12ea4fc9dc75e2fe9eb78bb20069ac60c2b8d3486ec4c9bc3f
+-- hash: a5257439100cbe46b2ce30ebb4262ac135f8c98cdf4e4536ffbc55b676109f1a
 
 name:           haskoin-store
-version:        0.52.1
+version:        0.52.2
 synopsis:       Storage and index for Bitcoin and Bitcoin Cash
 description:    Please see the README on GitHub at <https://github.com/haskoin/haskoin-store#readme>
 category:       Bitcoin, Finance, Network
diff --git a/src/Haskoin/Store/Web.hs b/src/Haskoin/Store/Web.hs
--- a/src/Haskoin/Store/Web.hs
+++ b/src/Haskoin/Store/Web.hs
@@ -1666,7 +1666,7 @@
     get_count = do
         d <- lift (asks (maxLimitDefault . webMaxLimits . webConfig))
         x <- lift (asks (maxLimitFull . webMaxLimits . webConfig))
-        i <- min x <$> (S.param "n" `S.rescue` const (return d))
+        i <- min x <$> (S.param "limit" `S.rescue` const (return d))
         return $ fromIntegral i
     get_offset = do
         x <- lift (asks (maxLimitOffset . webMaxLimits . webConfig))
