diff --git a/src/Service/Printful.php b/src/Service/Printful.php
index 2366906..d860bc5 100644
--- a/src/Service/Printful.php
+++ b/src/Service/Printful.php
@@ -20,7 +20,7 @@ class Printful implements PrintfulInterface {
       'path' => 'sync/variant',
     ],
     'getStoreInfo' => [
-      'path' => 'store',
+      'path' => 'stores',
     ],
     'productsVariant' => [
       'path' => 'products/variant',
@@ -105,7 +105,7 @@ class Printful implements PrintfulInterface {
   protected function request($request_options) {
     $options = [
       'headers' => [
-        'Authorization' => 'Basic ' . base64_encode($this->apiKey),
+        'Authorization' => 'Bearer ' . $this->apiKey,
       ],
     ];
 
