diff --git a/fb.cabal b/fb.cabal
--- a/fb.cabal
+++ b/fb.cabal
@@ -1,5 +1,5 @@
 name:              fb
-version:           0.13.2
+version:           0.13.3
 license:           BSD3
 license-file:      LICENSE
 author:            Felipe Lessa
diff --git a/src/Facebook/Types.hs b/src/Facebook/Types.hs
--- a/src/Facebook/Types.hs
+++ b/src/Facebook/Types.hs
@@ -23,6 +23,7 @@
 import Data.ByteString (ByteString)
 import Data.Int (Int64)
 import Data.Monoid (Monoid, mappend)
+import Data.String (IsString)
 import Data.Text (Text)
 import Data.Time (UTCTime, parseTime)
 import Data.Typeable (Typeable, Typeable1)
@@ -94,7 +95,7 @@
 
 -- | The identification code of an object.
 newtype Id = Id { idCode :: Text }
-    deriving (Eq, Ord, Show, Read, Typeable)
+    deriving (Eq, Ord, Show, Read, Typeable, IsString)
 
 instance A.FromJSON Id where
     parseJSON (A.Object v) = v A..: "id"
