diff --git a/docs/smartui-cli.md b/docs/smartui-cli.md
index 197d51da9..b1978c777 100644
--- a/docs/smartui-cli.md
+++ b/docs/smartui-cli.md
@@ -252,9 +252,6 @@ steps:
smartui capture urls.json --config smartui-web.json
```
-
-
-
### SmartUI CLI Options and Keys
The following are supported `CLI (Command Line Interface)` options for Visual Regression Testing with SmartUI:
@@ -270,6 +267,37 @@ You can see the Smart UI dashboard to view the results. This will help you ident
+### Parallel execution of static URLs
+
+You can reduce the build time by executing parallel URLs in the following way.
+
+```bash
+npx smartui capture urls.json --config .smartui.json --parallel --fetch-results
+```
+
+- The `--parallel` flag determines how many URLs will be processed simultaneously
+- Each thread captures screenshots independently, maximizing throughput
+
+>**Example:**
+>```bash
+>npx smartui capture urls.json --config .smartui.json --parallel 3 --fetch-results
+>```
+
+#### Determining Optimal Thread Count
+The maximum number of parallel threads is calculated using the formula: log2(N) where N is the total number of URLs.
+
+>**For example:**
+>- For 100 URLs: Maximum parallel threads = log2(100) = 6 threads
+>- For 50 URLs: Maximum parallel threads = log2(50) = 5 threads
+>- For 25 URLs: Maximum parallel threads = log2(25) = 4 threads
+
+#### Best Practices for parallel execution
+
+- Start with a lower thread count and gradually increase based on your system's performance
+- Monitor system resources during execution
+- Ensure stable internet connection for reliable parallel processing
+
+
For additional information about SmartUI APIs please explore the documentation [here](https://www.lambdatest.com/support/api-doc/)
diff --git a/docs/smartui-sdk-fetch-results.md b/docs/smartui-sdk-fetch-results.md
index 8a360b46a..21af2b326 100644
--- a/docs/smartui-sdk-fetch-results.md
+++ b/docs/smartui-sdk-fetch-results.md
@@ -61,7 +61,7 @@ SmartUI CLI allows you to fetch detailed build results after executing your visu
## Steps to Use
-### *Step 1:* Install SmartUI CLI
+### **Step 1:** Install SmartUI CLI
If you haven't already installed SmartUI CLI, install it using npm: