diff --git a/airtable-api.cabal b/airtable-api.cabal
--- a/airtable-api.cabal
+++ b/airtable-api.cabal
@@ -1,5 +1,5 @@
 name:                airtable-api
-version:             0.2.0.0
+version:             0.2.0.1
 synopsis:            Requesting and introspecting Tables within an Airtable project.
 -- description:
 homepage:            https://github.com/ooblahman/airtable-api
diff --git a/src/Airtable/Table.hs b/src/Airtable/Table.hs
--- a/src/Airtable/Table.hs
+++ b/src/Airtable/Table.hs
@@ -100,11 +100,11 @@
     where
       parseRec tbl json@(Object v) =
             do  recId <- v .: "id"
-                obj <- parseJSON json
+                fields <- v .: "fields"
+                obj <- parseJSON fields
                 return $ Map.insert recId obj tbl
       parseRec tbl invalid = typeMismatch "Table" invalid
   parseJSON invalid = typeMismatch "Table" invalid
-
 
 parseRecord :: (UTCTime -> RecordID -> Value -> Parser a) -> Value -> Parser a
 parseRecord action (Object v) = do
