diff --git a/Data/GeoIP2.hs b/Data/GeoIP2.hs
--- a/Data/GeoIP2.hs
+++ b/Data/GeoIP2.hs
@@ -109,6 +109,7 @@
   , geoCountry       :: Maybe T.Text
   , geoLocation      :: Maybe (Double, Double)
   , geoCity          :: Maybe T.Text
+  , geoPostalCode    :: Maybe T.Text
   , geoSubdivisions  :: [(T.Text, T.Text)]
 } deriving (Show, Eq)
 
@@ -129,4 +130,5 @@
                      (res .:? "country" ..? "names" ..? lang)
                      ((,) <$> res .:? "location" ..? "latitude" <*> res .:? "location" ..? "longitude")
                      (res .:? "city" ..? "names" ..? lang)
+                     (res .:? "postal" ..? "code")
                      (fromMaybe [] subdivs)
diff --git a/geoip2.cabal b/geoip2.cabal
--- a/geoip2.cabal
+++ b/geoip2.cabal
@@ -1,5 +1,5 @@
 name:                geoip2
-version:             0.2.0.1
+version:             0.2.1.1
 synopsis:            Pure haskell interface to MaxMind GeoIP database
 description:
   GeoIP2 is a haskell binding to the MaxMind GeoIP2 database.
