diff --git a/knowledgebase/generate-har-file.mdx b/knowledgebase/generate-har-file.mdx
new file mode 100644
index 00000000000..aaab98e24c1
--- /dev/null
+++ b/knowledgebase/generate-har-file.mdx
@@ -0,0 +1,52 @@
+---
+date: 2025-11-11
+title: How to Generate a HAR file for support
+tags: ['Tools and Utilities']
+keywords: ['HAR file', 'HTTP Archive']
+description: 'A HAR (HTTP Archive) file captures the network activity in your browser. It can help our support team diagnose slow page loads, failed requests, or other network issues.'
+---
+
+{frontMatter.description}
+{/* truncate */}
+
+## From Google Chrome {#from-google-chrome}
+
+1. Open Developer Tools by pressing F12 or Ctrl + Shift + I (Windows/Linux) / Cmd + Option + I (Mac).
+2. Click the "Network" tab.
+3. Reload the page and reproduce the issue.
+4. From Developer Tools, click the download button.
+
+## From Mozilla Firefox {#from-mozilla-firefox}
+
+1. Open Developer Tools by pressing F12 or Ctrl + Shift + E (Windows/Linux) / Cmd + Option + E (Mac).
+2. Click the "Network" tab.
+3. Reload the page and reproduce the issue.
+4. From Developer Tools, right-click in the request list and select "Save All As HAR".
+
+## From Microsoft Edge {#from-microsoft-edge}
+
+1. Open Developer Tools by pressing F12 or Ctrl + Shift + I (Windows/Linux) / Cmd + Option + I (Mac).
+2. Click the "Network" tab.
+3. Reload the page and reproduce the issue.
+4. From Developer Tools, right-click in the network list and choose "Save all as HAR with content".
+
+## From Safari {#from-safari}
+
+1. Enable Developer Tools (if not already enabled):
+ - Go to Safari > Settings > Advanced.
+ - Check "Show Develop menu in menu bar" at the bottom.
+2. Click Develop > Show Web Inspector.
+3. Click the "Network" tab.
+4. Reload the page and reproduce the issue.
+5. From Developer Tools, click the "Export" button.
+
+## Sending the .HAR file {#sending-har-file}
+
+1. Rename the file to something short and descriptive (e.g., login-issue.har).
+2. Compress the file (optional but recommended).
+3. Attach it to your support case or email it to your assigned support contact.
+
+:::note
+HAR files may contain session cookies or other sensitive data.
+Only share them with authorized support personnel.
+:::
\ No newline at end of file