diff --git a/pages/providers/instagram.mdx b/pages/providers/instagram.mdx
index 58a285b..0ee0742 100644
--- a/pages/providers/instagram.mdx
+++ b/pages/providers/instagram.mdx
@@ -10,6 +10,13 @@ import OAuth2Redirect from "../../components/snippets/oauth2redirect.tsx";
**NOTE:** Please be advised that Instagram and Facebook can use the same app (no need to create two separate apps)
+## Connection Options
+There are two ways to connect to an Instagram account: by using a Facebook Business or through a standalone flow that connects directly to an Instagram account.
+
+## Setting up Meta Application
+
+The following steps will guide you through the setup of a Meta application that can be used for connecting Instagram to Postiz.
+
### Step 1
Create a [new app in Instagram developers](https://developers.instagram.com/apps/creation/), choose the business you want to connect it to.
@@ -33,19 +40,25 @@ Add all your details and click Create App

Set final details
+
-### Step 5
+## Facebook Business Option
+
+If you have a Facebook Business page that is linked to your Instagram account, you can connect to it by setting up the Login for Business flow.
+
+
+### Set up Login for Business

Set up login for business
-### Step 6
+### Set up Redirect URI
Set up a redirect URI back to the application

-### Step 7
+### Set up permissions

Go to advanced permission and request access for the following scopes:
@@ -57,7 +70,7 @@ Go to advanced permission and request access for the following scopes:
`instagram_manage_comments`
`instagram_manage_insights`
-### Step 8
+### Copy App ID and Secret

Go to basic permissions copy your App ID and App Secret and paste them in your `.env` file
@@ -69,3 +82,43 @@ FACEBOOK_APP_SECRET="app secret"
Instagram should now be working!
+
+
+## Instagram Standalone Option
+
+If you want to connect directly to your Instagram account without having to use a Facebook Business, use the standalone option.
+
+
+ Please note that standalone option requires a professional Instagram account.
+
+
+
+### Set up Instagram
+
+
+Set up Instagram.
+
+### Set up Instagram Business Login
+
+
+Click on the button to set up Instagram Business Login
+
+### Set up Redirect URI
+
+
+
+
+### Copy Instagram App ID and Secret
+
+
+From your Instagram API setup screen copy the Instagram App ID and Instagram App Secret and paste them in your `.env` file
+
+```env
+INSTAGRAM_APP_ID="app id"
+INSTAGRAM_APP_SECRET="app secret"
+```
+
+### Add Instagram Standalone channel in Postiz Application
+
+Go to the Postiz web interface, and click on the "Add Channel" button. Select "Instagram (Standalone)" from the list of available channels. You should be redirected to the Instagram login screen to authorize the application.
+
diff --git a/public/images/providers/instagram-standalone/instagram-standalone-001.png b/public/images/providers/instagram-standalone/instagram-standalone-001.png
new file mode 100644
index 0000000..2fee8ae
Binary files /dev/null and b/public/images/providers/instagram-standalone/instagram-standalone-001.png differ
diff --git a/public/images/providers/instagram-standalone/instagram-standalone-002.png b/public/images/providers/instagram-standalone/instagram-standalone-002.png
new file mode 100644
index 0000000..f133874
Binary files /dev/null and b/public/images/providers/instagram-standalone/instagram-standalone-002.png differ
diff --git a/public/images/providers/instagram-standalone/instagram-standalone-003.png b/public/images/providers/instagram-standalone/instagram-standalone-003.png
new file mode 100644
index 0000000..d38a0e1
Binary files /dev/null and b/public/images/providers/instagram-standalone/instagram-standalone-003.png differ
diff --git a/public/images/providers/instagram-standalone/instagram-standalone-004.png b/public/images/providers/instagram-standalone/instagram-standalone-004.png
new file mode 100644
index 0000000..d19ee7e
Binary files /dev/null and b/public/images/providers/instagram-standalone/instagram-standalone-004.png differ