diff --git a/Web/Twitter/Types.hs b/Web/Twitter/Types.hs
--- a/Web/Twitter/Types.hs
+++ b/Web/Twitter/Types.hs
@@ -93,6 +93,7 @@
   , statusUser          :: User
   , statusRetweet       :: Maybe Status
   , statusPlace         :: Maybe Place
+  , statusFavoriteCount :: Integer
   } deriving (Show, Eq)
 
 instance FromJSON Status where
@@ -110,6 +111,7 @@
            <*> o .:  "user"
            <*> o .:? "retweeted_status"
            <*> o .:? "place"
+           <*> ( ( o .:? "favorite_count" ) >>= return . maybe 0 id )
   parseJSON _ = mzero
 
 data SearchResult body =
diff --git a/Web/Twitter/Types/Lens.hs b/Web/Twitter/Types/Lens.hs
--- a/Web/Twitter/Types/Lens.hs
+++ b/Web/Twitter/Types/Lens.hs
@@ -44,6 +44,7 @@
        , statusRetweet
        , statusUser
        , statusPlace
+       , statusFavoriteCount
 
        , searchResultStatuses
        , searchResultSearchMetadata
@@ -223,6 +224,7 @@
 SIMPLE_LENS(statusRetweet             , Status,  Maybe Status                 )
 SIMPLE_LENS(statusUser                , Status,  User                         )
 SIMPLE_LENS(statusPlace               , Status,  Maybe Place                  )
+SIMPLE_LENS(statusFavoriteCount       , Status,  Integer                      )
 
 TYPECHANGE_LENS(searchResultStatuses  , SearchResult                          )
 SIMPLE_LENS(searchResultSearchMetadata, SearchResult body,  SearchMetadata    )
diff --git a/twitter-types.cabal b/twitter-types.cabal
--- a/twitter-types.cabal
+++ b/twitter-types.cabal
@@ -1,5 +1,5 @@
 name:              twitter-types
-version:           0.2.20140424
+version:           0.3.20140601
 license:           BSD3
 license-file:      LICENSE
 author:            Takahiro HIMURA
