Index: iknow-api/Controllers/AuthController.cs
===================================================================
--- iknow-api/Controllers/AuthController.cs	(revision 5eb784799acea35b5d5c9141ea54699741bc3d71)
+++ iknow-api/Controllers/AuthController.cs	(revision 4e061d8c2af2ecd0b0495d9f5a22c1c1a32b8976)
@@ -12,8 +12,10 @@
     {
         private readonly IAuthService _authService;
+        private readonly IRefreshTokenService _refreshTokenService;
 
-        public AuthController(IAuthService authService)
+        public AuthController(IAuthService authService, IRefreshTokenService refreshTokenService)
         {
             _authService = authService;
+            _refreshTokenService = refreshTokenService;
         }
 
@@ -54,4 +56,13 @@
             return Ok(new { message = "You are authorized!" });
         }
+
+        [HttpPost("verify-token")]
+        public async Task<IActionResult> verifyToken([FromBody]  VerifyRefreshTokenDto VerifyRefreshTokenDto)
+        {
+            if (await _refreshTokenService.VerifyRefreshToken(VerifyRefreshTokenDto))
+            {   return Ok();    }
+            else
+            {   return BadRequest("No token found");    }
+        }
     }
 }
