diff --git a/ChangeLog.md b/ChangeLog.md
--- a/ChangeLog.md
+++ b/ChangeLog.md
@@ -1,5 +1,10 @@
 # Revision history for ip2location.io
 
+## 1.4.0  -- 2025-09-26
+
+* Added support for as_info section.
+
+
 ## 1.3.0  -- 2025-08-05
 
 * Added support for is_bogon field.
diff --git a/Configuration.hs b/Configuration.hs
--- a/Configuration.hs
+++ b/Configuration.hs
@@ -28,4 +28,4 @@
 -}
 open :: String -> IO Config
 open apikey = do
-    return (Config apikey "sdk-haskell-iplio" "1.3.0")
+    return (Config apikey "sdk-haskell-iplio" "1.4.0")
diff --git a/IPGeolocation.hs b/IPGeolocation.hs
--- a/IPGeolocation.hs
+++ b/IPGeolocation.hs
@@ -11,7 +11,7 @@
 
 IP2Location.io API subscription at https://www.ip2location.io
 -}
-module IPGeolocation (IPResult(..), ResponseObj(..), ErrorObj(..), ErrorInfo(..), Continent(..), Translation(..), Country(..), Currency(..), Language(..), Region(..), City(..), TimeZoneInfo(..), GeoTargeting(..), ProxyObj(..), lookUpIP) where
+module IPGeolocation (IPResult(..), ResponseObj(..), ErrorObj(..), ErrorInfo(..), ASInfo(..),  Continent(..), Translation(..), Country(..), Currency(..), Language(..), Region(..), City(..), TimeZoneInfo(..), GeoTargeting(..), ProxyObj(..), lookUpIP) where
 
 import Control.Exception
 import System.Exit
@@ -25,6 +25,15 @@
 import GHC.Generics (Generic)
 import Control.Applicative ((<|>))
 
+-- | AS info
+data ASInfo = ASInfo {
+    as_number :: String,
+    as_name :: String,
+    as_domain :: String,
+    as_usage_type :: String,
+    as_cidr :: String
+} deriving (Show, Generic)
+
 -- | Translation
 data Translation = Translation {
     lang :: Maybe String,
@@ -133,6 +142,7 @@
     time_zone :: String,
     asn :: String,
     as :: String,
+    as_info :: Maybe ASInfo,
     isp :: Maybe String,
     domain :: Maybe String,
     net_speed :: Maybe String,
@@ -178,6 +188,7 @@
     deriving (Show, Generic)
 
 -- Derive FromJSON instances
+instance FromJSON ASInfo
 instance FromJSON Translation
 instance FromJSON Continent
 instance FromJSON Currency
diff --git a/ip2location-io.cabal b/ip2location-io.cabal
--- a/ip2location-io.cabal
+++ b/ip2location-io.cabal
@@ -10,7 +10,7 @@
 -- PVP summary:      +-+------- breaking API changes
 --                   | | +----- non-breaking API additions
 --                   | | | +--- code changes with no API change
-version:             1.3.0
+version:             1.4.0
 
 -- A short (one-line) description of the package.
 synopsis:            IP2Location.io Haskell package for IP geolocation and domain WHOIS.
