diff --git a/CHANGELOG.md b/CHANGELOG.md
new file mode 100644
index 0000000000000000000000000000000000000000..9c0ca1ff9d77bec93e1786916f0fcdf97e0fd13a
--- /dev/null
+++ b/CHANGELOG.md
@@ -0,0 +1,3 @@
+## [1.1.0] - 2019-05-30
+### Added
+- Timeout in api client options interface
diff --git a/src/Client/ApiClientOptions.php b/src/Client/ApiClientOptions.php
index 34d16834be5e03f70048e8b6ee650693527585dc..6decfa7a17d5c710efec2b3a0817cf9b64e53b17 100644
--- a/src/Client/ApiClientOptions.php
+++ b/src/Client/ApiClientOptions.php
@@ -33,5 +33,4 @@ interface ApiClientOptions extends HttpClientOptions, SerializerOptions
      * @return string
      */
     public function getApiClientClass();
-
 }
\ No newline at end of file
diff --git a/src/Client/ApiClientOptionsTimeout.php b/src/Client/ApiClientOptionsTimeout.php
new file mode 100644
index 0000000000000000000000000000000000000000..281c0d37686effbf3f6c373d2897faa3c3b1e16d
--- /dev/null
+++ b/src/Client/ApiClientOptionsTimeout.php
@@ -0,0 +1,13 @@
+<?php
+
+namespace WPDesk\ApiClient\Client;
+
+
+interface ApiClientOptionsTimeout extends ApiClientOptions
+{
+    /**
+     * @return int
+     */
+    public function getTimeout();
+
+}
\ No newline at end of file
diff --git a/src/Client/ClientFactory.php b/src/Client/ClientFactory.php
index 0cc058e53f912982e8d6713a51cf4e5eec98e7ab..6d84b7ee24e1c8f4f0f9e77e30aa14863ca50e01 100644
--- a/src/Client/ClientFactory.php
+++ b/src/Client/ClientFactory.php
@@ -24,7 +24,8 @@ class ClientFactory
             $serializerFactory->createSerializer($options),
             $options->getLogger(),
             $options->getApiUrl(),
-            $options->getDefaultRequestHeaders()
+            $options->getDefaultRequestHeaders(),
+            ($options instanceof ApiClientOptionsTimeout)? $options->getTimeout(): null
         );
 
         if ($options->isCachedClient()) {
diff --git a/src/Client/ClientImplementation.php b/src/Client/ClientImplementation.php
index f948becc99b953e324c1e5e2c1268333c3e06096..3777c5a1fdfe6dd0a9d7a51073944fa5159c9003 100644
--- a/src/Client/ClientImplementation.php
+++ b/src/Client/ClientImplementation.php
@@ -16,8 +16,6 @@ class ClientImplementation implements Client, LoggerAwareInterface
 {
     const CLIENT_VERSION = '1.6.5';
 
-    const DEFAULT_TIMEOUT = 10;
-
     const LIBRARY_LOGIN_CONTEXT = 'wp-api-client';
 
     /** @var HttpClient */
@@ -35,6 +33,9 @@ class ClientImplementation implements Client, LoggerAwareInterface
     /** @var array */
     private $defaultRequestHeaders;
 
+	/** @var int */
+    private $timeout;
+
     /**
      * Client constructor.
      * @param HttpClient $client
@@ -42,19 +43,22 @@ class ClientImplementation implements Client, LoggerAwareInterface
      * @param LoggerInterface $logger
      * @param string $apiUri
      * @param array $defaultRequestHeaders
+     * @param int $timeout
      */
     public function __construct(
         HttpClient $client,
         Serializer $serializer,
         LoggerInterface $logger,
         $apiUri,
-        array $defaultRequestHeaders
+        array $defaultRequestHeaders,
+        $timeout = 10
     ) {
-        $this->client = $client;
-        $this->serializer = $serializer;
-        $this->logger = $logger;
-        $this->apiUrl = $apiUri;
+        $this->client                = $client;
+        $this->serializer            = $serializer;
+        $this->logger                = $logger;
+        $this->apiUrl                = $apiUri;
         $this->defaultRequestHeaders = $defaultRequestHeaders;
+        $this->timeout               = $timeout;
     }
 
     /**
@@ -73,7 +77,8 @@ class ClientImplementation implements Client, LoggerAwareInterface
                 $fullUrl = $this->prepareFullUrl($request),
                 $method = $request->getMethod(),
                 $body = $this->prepareRequestBody($request),
-                $headers = $this->prepareRequestHeaders($request), self::DEFAULT_TIMEOUT
+                $headers = $this->prepareRequestHeaders($request),
+                $this->timeout
             );
 
             $this->logger->debug(
diff --git a/tests/unit/Client/TestClientFactory.php b/tests/unit/Client/TestClientFactory.php
index 553524d74164ba77435805ca91dbc51f0cbd4dcc..6c57654e1c2e92bdab5ec76f7d2b3db64a67515d 100644
--- a/tests/unit/Client/TestClientFactory.php
+++ b/tests/unit/Client/TestClientFactory.php
@@ -43,6 +43,10 @@ class TestClientFactory extends \PHPUnit\Framework\TestCase
                 ->withAnyArgs()
                 ->andReturn($isCachedClient);
 
+        $options->shouldReceive('getTimeout')
+                ->withAnyArgs()
+                ->andReturn(30);
+
         return $options;
     }