diff --git a/docs.json b/docs.json
index 4acf259..7ad5f68 100644
--- a/docs.json
+++ b/docs.json
@@ -83,6 +83,7 @@
"pages": [
"general/api-client/design-apis",
"general/api-client/api-collections",
+ "general/api-client/examples",
{
"group": "Import & Export APIs",
"pages": [
diff --git a/general/api-client/examples.mdx b/general/api-client/examples.mdx
new file mode 100644
index 0000000..5ae4512
--- /dev/null
+++ b/general/api-client/examples.mdx
@@ -0,0 +1,113 @@
+---
+title: "Request Examples"
+label: "Request Examples"
+slug: "examples"
+description: "Save, manage, and reuse request examples in Requestly. Create snapshots of your API requests with different configurations for quick reuse."
+seoTitle: "Request Examples"
+seoDescription: "Save, manage, and reuse request examples in Requestly. Create snapshots of your API requests with different configurations for quick reuse."
+visibility: "PUBLIC"
+---
+
+Request Examples allow you to save reusable snapshots of an API request with specific configurations such as parameters, headers, and body payloads. This makes it easy to switch between different variations of the same request without modifying the original.
+
+Examples are stored under their parent request and are accessible from the sidebar for quick navigation.
+
+## Why Use Request Examples
+
+- **Test multiple scenarios**\
+ Save different configurations like valid inputs, edge cases, and error states, and switch between them instantly.
+- **Collaborate with your team**\
+ Examples are shared within your workspace so others can view and use the exact configurations.
+- **Retain request and response data**\
+ Each example stores both the request and its response, making it easy to revisit past executions.
+
+## Save a request as an example
+
+You can create an example from any HTTP or GraphQL request that has been sent at least once.
+
+
+
+ Navigate to an existing API request in your workspace or send a new request.
+
+
+ Click the **Save** dropdown in the request view and select **Save as Example**. \
+ This stores the current configuration including URL, method, headers, parameters, and body.
+
+
+ 
+
+
+
+ The example opens in a new tab. The parent request in the sidebar expands to show the newly created example beneath it.
+
+
+ 
+
+
+
+
+
+ You can also save examples from the request's context menu in the sidebar by right-clicking the request and selecting the save option.
+
+
+## Manage examples in the sidebar
+
+Examples appear as collapsible children under their parent request in the sidebar. Click the expand arrow next to any request to reveal its examples.
+
+### Open an example
+
+Click on an example in the sidebar to open it in a new tab. The example loads with the saved request configuration and response data.
+
+
+ 
+
+
+### Rename an example
+
+Right-click the example in the sidebar and select **Rename**, or double-click the example name. Type the new name and press **Enter** to save.
+
+
+ 
+
+
+### Duplicate an example
+
+Right-click the example in the sidebar and select **Duplicate**. A copy of the example is created under the same parent request.
+
+
+ 
+
+
+### Delete an example
+
+Right-click the example in the sidebar and select **Delete**. Confirm the action in the prompt that appears.
+
+
+ 
+
+
+
+ Deleting an example is permanent and cannot be undone.
+
+
+## Use an example as a template
+
+When viewing an example, click **Use as Template** to load its configuration into a new draft request. This lets you start a new request based on an existing example without modifying the original.
+
+
+ 
+
+
+## What's next?
+
+
+
+ Organize your requests into collections and folders
+
+
+ Use variables to make requests reusable across environments
+
+
+ Add pre-request scripts and tests to automate your workflow
+
+
\ No newline at end of file
diff --git a/images/Deleteanexample.png b/images/Deleteanexample.png
new file mode 100644
index 0000000..96f0841
Binary files /dev/null and b/images/Deleteanexample.png differ
diff --git a/images/Duplicateanexample.png b/images/Duplicateanexample.png
new file mode 100644
index 0000000..13af1f1
Binary files /dev/null and b/images/Duplicateanexample.png differ
diff --git a/images/Renameanexample.png b/images/Renameanexample.png
new file mode 100644
index 0000000..cb7a5e1
Binary files /dev/null and b/images/Renameanexample.png differ
diff --git a/images/SaveExamplesinrequestly.png b/images/SaveExamplesinrequestly.png
new file mode 100644
index 0000000..c3a6495
Binary files /dev/null and b/images/SaveExamplesinrequestly.png differ
diff --git a/images/Useanexampleasatemplate.png b/images/Useanexampleasatemplate.png
new file mode 100644
index 0000000..f86e8ff
Binary files /dev/null and b/images/Useanexampleasatemplate.png differ
diff --git a/images/ViewExamples.png b/images/ViewExamples.png
new file mode 100644
index 0000000..4f5aa13
Binary files /dev/null and b/images/ViewExamples.png differ