diff --git a/mint.json b/mint.json
index 31fb48b8..edf772fc 100644
--- a/mint.json
+++ b/mint.json
@@ -459,6 +459,7 @@
"platform/destinations/overview",
"platform/destinations/astradb",
"platform/destinations/azure-cognitive-search",
+ "platform/destinations/delta-table",
"platform/destinations/milvus",
"platform/destinations/mongodb",
"platform/destinations/pinecone",
diff --git a/platform/connectors.mdx b/platform/connectors.mdx
index 400b0d99..e16666b0 100644
--- a/platform/connectors.mdx
+++ b/platform/connectors.mdx
@@ -24,6 +24,7 @@ If your source is not listed here, you might still be able to connect Unstructur
- [Astra DB](/platform/destinations/astradb)
- [Azure Cognitive Search](/platform/destinations/azure-cognitive-search)
+- [Delta Table](/platform/destinations/delta-table)
- [Milvus](/platform/destinations/milvus)
- [MongoDB](/platform/destinations/mongodb)
- [Pinecone](/platform/destinations/pinecone)
diff --git a/platform/destinations/delta-table.mdx b/platform/destinations/delta-table.mdx
new file mode 100644
index 00000000..32e2d773
--- /dev/null
+++ b/platform/destinations/delta-table.mdx
@@ -0,0 +1,26 @@
+---
+title: Delta Table
+---
+
+Send processed data from Unstructured to a Delta Table, stored in Amazon S3.
+
+You'll need:
+
+import DeltaTablePrerequisites from '/snippets/general-shared-text/delta-table.mdx';
+
+
+
+To create the destination connector:
+
+1. On the sidebar, click **Connectors**.
+2. Click **Destinations**.
+3. Click **Add new**.
+4. Give the connector some unique **Name**.
+5. In the **Provider** area, click **Delta Table**.
+6. Click **Continue**.
+7. Follow the on-screen instructions to fill in the fields as described later on this page.
+8. Click **Save and Test**.
+
+import DeltaTableFields from '/snippets/general-shared-text/delta-table-platform.mdx';
+
+
\ No newline at end of file
diff --git a/platform/destinations/overview.mdx b/platform/destinations/overview.mdx
index e3aa3042..24fc37ad 100644
--- a/platform/destinations/overview.mdx
+++ b/platform/destinations/overview.mdx
@@ -19,6 +19,7 @@ To create a destination connector:
- [Astra DB](/platform/destinations/astradb)
- [Azure Cognitive Search](/platform/destinations/azure-cognitive-search)
+ - [Delta Table](/platform/destinations/delta-table)
- [Milvus](/platform/destinations/milvus)
- [MongoDB](/platform/destinations/mongodb)
- [Pinecone](/platform/destinations/pinecone)
diff --git a/snippets/general-shared-text/delta-table-platform.mdx b/snippets/general-shared-text/delta-table-platform.mdx
new file mode 100644
index 00000000..205c24a0
--- /dev/null
+++ b/snippets/general-shared-text/delta-table-platform.mdx
@@ -0,0 +1,7 @@
+Fill in the following fields:
+
+- **Name** (_required_): A unique name for this connector.
+- **AWS Region** (_required_): The AWS Region identifier (for example, `us-east-1`) for the Amazon S3 bucket you want to store the Delta Table in.
+- **Bucket URI** (_required_): The URI of the Amazon S3 bucket you want to store the Delta Table in. This typically takes the format `s3://my-bucket/my-folder`.
+- **AWS Access Key ID** (_required_): The AWS access key ID for the AWS IAM principal (such as an IAM user) that has the appropriate access to the S3 bucket.
+- **AWS Secret Access Key** (_required_): The AWS secret access key for the corresponding AWS access key ID.
\ No newline at end of file