diff --git a/README.md b/README.md
--- a/README.md
+++ b/README.md
@@ -1,6 +1,6 @@
 # Kawhi : stats.NBA.com library 🏀
 
-[![Hackage](https://img.shields.io/hackage/v/kawhi.svg)](https://hackage.haskell.org/package/kawhi) [![Build Status](https://travis-ci.org/hamsterdam/kawhi.svg?branch=development)](https://travis-ci.org/hamsterdam/kawhi)
+[![Hackage](https://img.shields.io/hackage/v/kawhi.svg)](https://hackage.haskell.org/package/kawhi) [![Build Status](https://travis-ci.org/thunky-monk/kawhi.svg?branch=development)](https://travis-ci.org/thunky-monk/kawhi)
 
 A Haskell library for working with [NBA Stats](http://stats.nba.com) data. NBA Stats contains rich data, but accessing it is difficult and tedious. Kawhi helps to automate the data retrieval, allowing users to focus on statistics.
 
@@ -11,5 +11,5 @@
 To get started:
 
 1. [Get Haskell](https://haskell-lang.org/get-started). If you've never done any computer programming, this could be challenging. [Never give up!](https://www.instagram.com/p/BENA9hpN_wL/)
-2. Read the [guide](https://github.com/hamsterdam/kawhi/blob/master/guide.md).
-3. Check out the [example](https://github.com/hamsterdam/kawhi/tree/master/example).
+2. Read the [guide](https://github.com/thunky-monk/kawhi/blob/master/guide.md).
+3. Check out the [example](https://github.com/thunky-monk/kawhi/tree/master/example).
diff --git a/changelog.md b/changelog.md
--- a/changelog.md
+++ b/changelog.md
@@ -1,5 +1,9 @@
 # Changelog
 
+## 0.2.2
+
+Updated to add HTTP headers required by NBA Stats.
+
 ## 0.2.1
 
 Updated to support [aeson-1.0.0.0](https://hackage.haskell.org/package/aeson-1.0.0.0).
diff --git a/kawhi.cabal b/kawhi.cabal
--- a/kawhi.cabal
+++ b/kawhi.cabal
@@ -1,8 +1,8 @@
 name: kawhi
-version: 0.2.1
+version: 0.2.2
 synopsis: stats.NBA.com library
 description: Functions and types for interacting with stats.NBA.com
-homepage: https://github.com/hamsterdam/kawhi
+homepage: https://github.com/thunky-monk/kawhi
 license: MIT
 license-file: LICENSE
 author: Aaron Taylor
@@ -63,4 +63,4 @@
 
 source-repository head
   type: git
-  location: https://github.com/hamsterdam/kawhi
+  location: https://github.com/thunky-monk/kawhi
diff --git a/library/Data/NBA/Stats.hs b/library/Data/NBA/Stats.hs
--- a/library/Data/NBA/Stats.hs
+++ b/library/Data/NBA/Stats.hs
@@ -49,6 +49,7 @@
 import Data.Monoid ((<>))
 import qualified Data.Text as Text
 import qualified Network.HTTP.Client as HTTP
+import qualified Network.HTTP.Simple as HTTP
 import qualified Safe
 
 {- |
@@ -248,14 +249,18 @@
 
 
 get :: (MonadHttp.MonadHttp m, Catch.MonadThrow m) => StatsPath -> StatsParameters -> m (HTTP.Response LBS.ByteString)
-get path params = do
-    request <- HTTP.parseRequest $ Char8.unpack $ "http://stats.nba.com/stats/" <> path
-    MonadHttp.performRequest $ HTTP.setQueryString params request
+get path params =
+    modifyRequest <$> HTTP.parseRequest (Char8.unpack $ "http://stats.nba.com/stats/" <> path)
+    >>= MonadHttp.performRequest
+    where
+      modifyRequest =
+        HTTP.setRequestHeaders [("Accept-Language","en-us"), ("Accept", "application/json")]
+        . HTTP.setQueryString params
 
 {- $use
     The following is a working example of getting some "advanced statistics", split by month, for the San Antonio Spurs 2015-2016 regular season.
 
-    To learn how to find the NBA Stats values, like 'teamdashboardbygeneralsplits', for this example, read the <https://github.com/hamsterdam/kawhi/blob/master/guide.md guide>.
+    To learn how to find the NBA Stats values, like 'teamdashboardbygeneralsplits', for this example, read the <https://github.com/thunky-monk/kawhi/blob/master/guide.md guide>.
 
     @
     import qualified Data.Aeson as Aeson
diff --git a/stack.yaml b/stack.yaml
--- a/stack.yaml
+++ b/stack.yaml
@@ -1,5 +1,5 @@
 # Specifies the GHC version and set of packages available (e.g., lts-3.5, nightly-2015-09-21, ghc-7.10.2)
-resolver: nightly-2016-09-15
+resolver: lts-8.10
 
 # Packages to be built
 packages:
