diff --git a/controllers/friendController.js b/controllers/friendController.js
index df229c67df3cf4490278f4fddef71c98755b9c18..2a9cb2ed0c3e53f7b1781d896aed89af52fb2e27 100644
--- a/controllers/friendController.js
+++ b/controllers/friendController.js
@@ -49,6 +49,30 @@ class friendController {
             });
         }
     }
+
+    /**
+     * 보낸 친구 요청 목록 조회
+     * GET /api/friend/requests/sent
+     */
+    async getSentRequests(req, res) {
+        try {
+            const userId = req.user.id;
+            const requests = await FriendService.getSentRequests(userId);
+
+            return res.status(200).json({
+                success: true,
+                data: requests
+            });
+        } catch (error) {
+            return res.status(500).json({
+                success: false,
+                error: {
+                    message: error.message,
+                    code: 'FETCH_ERROR'
+                }
+            });
+        }
+    }
 }
 
 module.exports = new friendController();
\ No newline at end of file