I want to trigger a workflow when I save a reel or post on Instagram, and display it in my Notion dump for saved things.
I went through part of the Instagram api documentation and searches on n8n and can’t find something similar. Would appreciate the inputs and suggestions! TIA 
Not familiar with IG API but you can use interval/cron node to check if were any changes. Like every 5 minutes check some dump hash and compare with one hash before or even compare content instead of hash
Thanks! I’ll try to do this 
Sure if you will have any future problem do not hesitate to post it :)) We are happy to help
Concept for Building a Workaround to Save Instagram Posts
As of 2025, Instagram (Meta) does not provide an official API to retrieve content saved by users. Below is a workaround for achieving this functionality:
Step 1: Develop a Chrome Extension
Use ChatGPT or your coding skills to create a Chrome extension that:
- Detects when you browse the “Saved” section on Instagram.
- Grabs the relevant post data (e.g., post URL, description, media links).
- Packages the data for further processing.
Step 2: Post Data to n8n via Webhook
- Integrate the extension with an n8n webhook trigger.
- Set up the webhook to receive data sent from the Chrome extension.
- Use n8n workflows to process and format the received data.
Step 3: Store Data in Google Sheets or Notion
- Configure n8n to save the processed data to your preferred storage solution:
- Google Sheets: Use the Google Sheets integration to log data in a structured format.
- Notion: Use the Notion API to save the data into a database for easy reference and management.
Limitations
- Manual Trigger: The extension requires manual activation periodically, as there is no automatic way to trigger the process.
- Browser Dependency: The workaround is dependent on browsing Instagram via a desktop browser.
- Compliance: Ensure the approach complies with Instagram’s terms of service.
This method provides a practical way to save Instagram posts despite the API limitations, with minimal technical resources required.
對於短影片(Reels、Shorts),在音頻擷取-轉譯的流程碰到瓶頸後,我採取了不同的方法。建立了一個小型服務,能在單一呼叫中處理下載 + 轉譯 + 結構化摘要,並將結果匯出為 JSON 格式,這樣就能透過 HTTP Request 節點接入 n8n。
我主要是為自己建立的,因為「擷取 → 分割 → 轉譯 → 重新拼接」的流程一直容易出問題。如果有幫助的話,很樂意分享這個端點,它對 n8n 相當友善。