## ЁЯУе JSON Import Karne Ka Tarika
Bahut badhiya! Main aapko **teeno tarikon ke ready-to-use n8n workflows ka JSON** deta hoon. Aap inhe seedha import karke use kar sakte hain.
---
## ЁЯУе JSON Import Karne Ka Tarika
1. n8n mein **Settings** → **Import** par jayein
2. Niche diya gaya JSON copy karke paste karein
3. Sabhi **credentials** apne hisaab se badlein
4. Workflow ko **Active** karein
---
## рддрд░ीрдХा 1: RSS Feed Workflow (рд╕рдмрд╕े рдЖрд╕ाрди)
```json
{
"name": "Google Trends RSS to Social Media",
"nodes": [
{
"parameters": {
"rule": {
"interval": [
{
"field": "hours",
"hoursInterval": 6
}
]
}
},
"id": "trigger-1",
"name": "Cron Trigger (рд╣рд░ 6 рдШंрдЯे)",
"type": "n8n-nodes-base.scheduleTrigger",
"typeVersion": 1,
"position": [250, 300]
},
{
"parameters": {
"url": "https://trends.google.com/trending/rss?geo=IN"
},
"id": "rss-1",
"name": "Google Trends RSS",
"type": "n8n-nodes-base.rssFeedRead",
"typeVersion": 1,
"position": [450, 300]
},
{
"parameters": {
"jsCode": "// RSS feed se trending topics nikaalein\nconst items = $input.all();\nconst trends = [];\n\nfor (const item of items) {\n const trend = {\n title: item.json.title || '',\n pubDate: item.json.pubDate || '',\n description: item.json.description || '',\n traffic: '0'\n };\n \n // Traffic nikaalein (agar description mein ho)\n if (trend.description.includes('traffic:')) {\n const match = trend.description.match(/traffic: ([0-9K+]+)/i);\n if (match) trend.traffic = match[1];\n }\n \n trends.push(trend);\n}\n\n// Sirf top 5 trends return karein\nreturn trends.slice(0, 5);"
},
"id": "code-1",
"name": "Trends рдиिрдХाрд▓ें",
"type": "n8n-nodes-base.code",
"typeVersion": 1,
"position": [650, 300]
},
{
"parameters": {
"jsCode": "const trends = $input.all();\nconst posts = [];\n\nfor (const trend of trends) {\n const prompt = {\n topic: trend.json.title,\n prompt: `\nIs trending topic par ek chhota news article likhein (200 words mein):\nTopic: ${trend.json.title}\n\nStyle: News, engaging, factual\nLanguage: Hindi\n`\n };\n posts.push(prompt);\n}\n\nreturn posts;"
},
"id": "code-2",
"name": "AI Prompt рддैрдпाрд░ рдХрд░ें",
"type": "n8n-nodes-base.code",
"typeVersion": 1,
"position": [850, 300]
},
{
"parameters": {
"method": "POST",
"url": "https://api.openai.com/v1/chat/completions",
"authentication": "genericCredentialType",
"genericAuthType": "httpHeaderAuth",
"sendHeaders": true,
"headerParameters": {
"parameters": [
{
"name": "Authorization",
"value": "Bearer YOUR_OPENAI_API_KEY"
}
]
},
"sendBody": true,
"bodyParameters": {
"parameters": [
{
"name": "model",
"value": "gpt-3.5-turbo"
},
{
"name": "messages",
"value": "[{\"role\":\"system\",\"content\":\"Aap ek news reporter hain.\"},{\"role\":\"user\",\"content\":\"{{ $json.prompt }}\"}]"
},
{
"name": "temperature",
"value": 0.7
}
]
},
"options": {}
},
"id": "http-1",
"name": "GPT-3.5 рд╕े Article рдмрдиाрдПँ",
"type": "n8n-nodes-base.httpRequest",
"typeVersion": 3,
"position": [1050, 300]
},
{
"parameters": {
"jsCode": "const response = $input.first().json;\nconst content = response.choices[0].message.content;\nconst trend = $('Trends рдиिрдХाрд▓ें').item.json;\n\nreturn {\n title: trend.title,\n content: content,\n traffic: trend.traffic\n};"
},
"id": "code-3",
"name": "Article Format рдХрд░ें",
"type": "n8n-nodes-base.code",
"typeVersion": 1,
"position": [1250, 300]
},
{
"parameters": {
"method": "POST",
"url": "https://api.postiz.com/public/v1/posts",
"authentication": "genericCredentialType",
"genericAuthType": "httpHeaderAuth",
"sendHeaders": true,
"headerParameters": {
"parameters": [
{
"name": "Authorization",
"value": "Bearer YOUR_POSTIZ_API_KEY"
},
{
"name": "Content-Type",
"value": "application/json"
}
]
},
"sendBody": true,
"bodyParameters": {
"parameters": [
{
"name": "type",
"value": "now"
},
{
"name": "posts",
"value": "=[{\"integration\":{\"id\":\"YOUR_CHANNEL_ID\"},\"value\":[{\"content\":\"{{ $json.content }}\"}]}]"
}
]
},
"options": {}
},
"id": "http-2",
"name": "Postiz рдкрд░ рднेрдЬें",
"type": "n8n-nodes-base.httpRequest",
"typeVersion": 3,
"position": [1450, 300]
}
],
"connections": {
"Cron Trigger (рд╣рд░ 6 рдШंрдЯे)": {
"main": [
[
{
"node": "Google Trends RSS",
"type": "main",
"index": 0
}
]
]
},
"Google Trends RSS": {
"main": [
[
{
"node": "Trends рдиिрдХाрд▓ें",
"type": "main",
"index": 0
}
]
]
},
"Trends рдиिрдХाрд▓ें": {
"main": [
[
{
"node": "AI Prompt рддैрдпाрд░ рдХрд░ें",
"type": "main",
"index": 0
}
]
]
},
"AI Prompt рддैрдпाрд░ рдХрд░ें": {
"main": [
[
{
"node": "GPT-3.5 рд╕े Article рдмрдиाрдПँ",
"type": "main",
"index": 0
}
]
]
},
"GPT-3.5 рд╕े Article рдмрдиाрдПँ": {
"main": [
[
{
"node": "Article Format рдХрд░ें",
"type": "main",
"index": 0
}
]
]
},
"Article Format рдХрд░ें": {
"main": [
[
{
"node": "Postiz рдкрд░ рднेрдЬें",
"type": "main",
"index": 0
}
]
]
}
},
"settings": {
"executionOrder": "v1"
},
"staticData": null,
"pinData": {},
"versionId": "trends-rss-v1"
}
```
---
## рддрд░ीрдХा 2: n8n-nodes-trends Workflow (рдЕрдзिрдХ рдиिрдпंрдд्рд░рдг)
```json
{
"name": "Google Trends Community Nodes Workflow",
"nodes": [
{
"parameters": {
"rule": {
"interval": [
{
"field": "hours",
"hoursInterval": 12
}
]
}
},
"id": "trigger-2",
"name": "Cron (рджिрди рдоें 2 рдмाрд░)",
"type": "n8n-nodes-base.scheduleTrigger",
"typeVersion": 1,
"position": [250, 300]
},
{
"parameters": {
"operation": "dailyTrends",
"geo": "IN",
"language": "hi-IN",
"trendingHours": 24
},
"id": "trends-1",
"name": "Google Trends Node",
"type": "n8n-nodes-trends.trends",
"typeVersion": 1,
"position": [450, 300]
},
{
"parameters": {
"jsCode": "const trends = $input.all();\nconst processed = [];\n\nfor (const trend of trends) {\n if (trend.json.traffic && parseInt(trend.json.traffic) > 5000) {\n processed.push({\n title: trend.json.title,\n traffic: trend.json.traffic,\n articles: trend.json.articles || []\n });\n }\n}\n\nreturn processed.slice(0, 3);"
},
"id": "code-4",
"name": "рдл़िрд▓्рдЯрд░ рдХрд░ें (5000+ рдЯ्рд░ैрдл़िрдХ)",
"type": "n8n-nodes-base.code",
"typeVersion": 1,
"position": [650, 300]
},
{
"parameters": {
"jsCode": "const data = $input.all();\nconst posts = [];\n\nfor (const item of data) {\n const articleText = item.json.articles.map(a => `- ${a.title} (${a.source})`).join('\\n');\n \n const prompt = `\nTrending Topic: ${item.json.title}\nTraffic: ${item.json.traffic}\n\nNews Articles:\n${articleText}\n\nEk detailed news post likhein (300 words) Hindi mein. Social media ke liye suitable ho.\n`;\n \n posts.push({\n title: item.json.title,\n prompt: prompt\n });\n}\n\nreturn posts;"
},
"id": "code-5",
"name": "Prompt рдмрдиाрдПँ",
"type": "n8n-nodes-base.code",
"typeVersion": 1,
"position": [850, 300]
},
{
"parameters": {
"method": "POST",
"url": "https://api.openai.com/v1/chat/completions",
"authentication": "genericCredentialType",
"genericAuthType": "httpHeaderAuth",
"sendHeaders": true,
"headerParameters": {
"parameters": [
{
"name": "Authorization",
"value": "Bearer YOUR_OPENAI_API_KEY"
}
]
},
"sendBody": true,
"bodyParameters": {
"parameters": [
{
"name": "model",
"value": "gpt-4"
},
{
"name": "messages",
"value": "[{\"role\":\"system\",\"content\":\"Aap ek professional news writer hain.\"},{\"role\":\"user\",\"content\":\"{{ $json.prompt }}\"}]"
}
]
},
"options": {}
},
"id": "http-3",
"name": "GPT-4 рд╕े Content рдмрдиाрдПँ",
"type": "n8n-nodes-base.httpRequest",
"typeVersion": 3,
"position": [1050, 300]
},
{
"parameters": {
"url": "https://api.postiz.com/public/v1/channels",
"authentication": "genericCredentialType",
"genericAuthType": "httpHeaderAuth",
"sendHeaders": true,
"headerParameters": {
"parameters": [
{
"name": "Authorization",
"value": "Bearer YOUR_POSTIZ_API_KEY"
}
]
},
"options": {}
},
"id": "http-4",
"name": "Postiz Channels",
"type": "n8n-nodes-base.httpRequest",
"typeVersion": 3,
"position": [1050, 400]
},
{
"parameters": {
"jsCode": "const channels = $input.first().json;\nconst content = $('GPT-4 рд╕े Content рдмрдиाрдПँ').item.json.choices[0].message.content;\nconst topic = $('Prompt рдмрдиाрдПँ').item.json.title;\n\n// Channel IDs map karein\nconst channelMap = {};\nfor (const channel of channels) {\n channelMap[channel.platform.toLowerCase()] = channel.id;\n}\n\nconst posts = [];\nconst platforms = ['instagram', 'facebook', 'twitter', 'linkedin', 'telegram'];\n\nfor (const platform of platforms) {\n if (channelMap[platform]) {\n posts.push({\n channelId: channelMap[platform],\n content: `${content}\\n\\n#trending #${topic.replace(/ /g, '')}`,\n platform: platform\n });\n }\n}\n\nreturn posts;"
},
"id": "code-6",
"name": "Platforms рдХे рд▓िрдП рддैрдпाрд░ рдХрд░ें",
"type": "n8n-nodes-base.code",
"typeVersion": 1,
"position": [1250, 400]
},
{
"parameters": {
"method": "POST",
"url": "https://api.postiz.com/public/v1/posts",
"authentication": "genericCredentialType",
"genericAuthType": "httpHeaderAuth",
"sendHeaders": true,
"headerParameters": {
"parameters": [
{
"name": "Authorization",
"value": "Bearer YOUR_POSTIZ_API_KEY"
}
]
},
"sendBody": true,
"bodyParameters": {
"parameters": [
{
"name": "type",
"value": "now"
},
{
"name": "posts",
"value": "=[{\"integration\":{\"id\":\"{{ $json.channelId }}\"},\"value\":[{\"content\":\"{{ $json.content }}\"}]}]"
}
]
},
"options": {}
},
"id": "http-5",
"name": "Postiz рдкрд░ рдкोрд╕्рдЯ рдХрд░ें",
"type": "n8n-nodes-base.httpRequest",
"typeVersion": 3,
"position": [1450, 400]
}
],
"connections": {
"Cron (рджिрди рдоें 2 рдмाрд░)": {
"main": [
[
{
"node": "Google Trends Node",
"type": "main",
"index": 0
}
]
]
},
"Google Trends Node": {
"main": [
[
{
"node": "рдл़िрд▓्рдЯрд░ рдХрд░ें (5000+ рдЯ्рд░ैрдл़िрдХ)",
"type": "main",
"index": 0
}
]
]
},
"рдл़िрд▓्рдЯрд░ рдХрд░ें (5000+ рдЯ्рд░ैрдл़िрдХ)": {
"main": [
[
{
"node": "Prompt рдмрдиाрдПँ",
"type": "main",
"index": 0
}
],
[
{
"node": "Postiz Channels",
"type": "main",
"index": 0
}
]
]
},
"Prompt рдмрдиाрдПँ": {
"main": [
[
{
"node": "GPT-4 рд╕े Content рдмрдиाрдПँ",
"type": "main",
"index": 0
}
]
]
},
"Postiz Channels": {
"main": [
[
{
"node": "Platforms рдХे рд▓िрдП рддैрдпाрд░ рдХрд░ें",
"type": "main",
"index": 0
}
]
]
},
"GPT-4 рд╕े Content рдмрдиाрдПँ": {
"main": [
[
{
"node": "Platforms рдХे рд▓िрдП рддैрдпाрд░ рдХрд░ें",
"type": "main",
"index": 0
}
]
]
},
"Platforms рдХे рд▓िрдП рддैрдпाрд░ рдХрд░ें": {
"main": [
[
{
"node": "Postiz рдкрд░ рдкोрд╕्рдЯ рдХрд░ें",
"type": "main",
"index": 0
}
]
]
}
},
"settings": {
"executionOrder": "v1"
},
"staticData": null,
"pinData": {},
"versionId": "trends-node-v1"
}
```
---
## рддрд░ीрдХा 3: SerpApi Workflow (рдк्рд░ोрдлेрд╢рдирд▓)
```json
{
"name": "SerpApi Google Trends Professional",
"nodes": [
{
"parameters": {
"rule": {
"interval": [
{
"field": "hours",
"hoursInterval": 24
}
]
}
},
"id": "trigger-3",
"name": "Cron (рджिрди рдоें 1 рдмाрд░)",
"type": "n8n-nodes-base.scheduleTrigger",
"typeVersion": 1,
"position": [250, 300]
},
{
"parameters": {
"method": "GET",
"url": "https://serpapi.com/search",
"sendQuery": true,
"queryParameters": {
"parameters": [
{
"name": "engine",
"value": "google_trends_trending_now"
},
{
"name": "geo",
"value": "IN"
},
{
"name": "hl",
"value": "hi"
},
{
"name": "tz",
"value": "420"
},
{
"name": "api_key",
"value": "YOUR_SERPAPI_KEY"
}
]
},
"options": {}
},
"id": "http-6",
"name": "SerpApi - Trending Now",
"type": "n8n-nodes-base.httpRequest",
"typeVersion": 3,
"position": [450, 300]
},
{
"parameters": {
"jsCode": "const data = $input.first().json;\nconst trends = data.trending_searches || [];\nconst processed = [];\n\nfor (const trend of trends.slice(0, 3)) {\n processed.push({\n query: trend.query,\n traffic: trend.traffic || 'Unknown',\n page_token: trend.news_page_token || null\n });\n}\n\nreturn processed;"
},
"id": "code-7",
"name": "Process Trends",
"type": "n8n-nodes-base.code",
"typeVersion": 1,
"position": [650, 300]
},
{
"parameters": {
"jsCode": "const trends = $input.all();\nconst results = [];\n\nfor (const trend of trends) {\n if (trend.json.page_token) {\n results.push({\n json: {\n query: trend.json.query,\n traffic: trend.json.traffic,\n page_token: trend.json.page_token\n }\n });\n }\n}\n\nreturn results;"
},
"id": "split-1",
"name": "Split by Page Token",
"type": "n8n-nodes-base.splitInBatches",
"typeVersion": 1,
"position": [850, 300]
},
{
"parameters": {
"method": "GET",
"url": "https://serpapi.com/search",
"sendQuery": true,
"queryParameters": {
"parameters": [
{
"name": "engine",
"value": "google_trends_news"
},
{
"name": "page_token",
"value": "={{ $json.page_token }}"
},
{
"name": "api_key",
"value": "YOUR_SERPAPI_KEY"
}
]
},
"options": {}
},
"id": "http-7",
"name": "SerpApi - Get News",
"type": "n8n-nodes-base.httpRequest",
"typeVersion": 3,
"position": [1050, 300]
},
{
"parameters": {
"jsCode": "const trend = $('Process Trends').item.json;\nconst news = $input.first().json;\n\nconst articles = (news.news_results || []).map(item => ({\n title: item.title,\n link: item.link,\n source: item.source,\n date: item.date,\n thumbnail: item.thumbnail\n}));\n\nreturn {\n query: trend.query,\n traffic: trend.traffic,\n articles: articles\n};"
},
"id": "code-8",
"name": "Combine Data",
"type": "n8n-nodes-base.code",
"typeVersion": 1,
"position": [1250, 300]
},
{
"parameters": {
"jsCode": "const data = $input.first().json;\n\nconst prompt = `\nрдЖрдк рдПрдХ рдкेрд╢ेрд╡рд░ рд╕рдоाрдЪाрд░ рд▓ेрдЦрдХ рд╣ैं। рдЗрд╕ рдЯ्рд░ेंрдбिंрдЧ рдЯॉрдкिрдХ рдкрд░ рдПрдХ рд╡िрд╕्рддृрдд рд░िрдкोрд░्рдЯ рддैрдпाрд░ рдХрд░ें:\n\nрдЯॉрдкिрдХ: ${data.query}\nрдЯ्рд░ैрдл़िрдХ: ${data.traffic}\n\nрдЙрдкрд▓рдм्рдз рд╕рдоाрдЪाрд░ рд╕्рд░ोрдд:\n${data.articles.map(a => `- ${a.title} (${a.source})`).join('\\n')}\n\nрд░िрдкोрд░्рдЯ рдоें рд╢ाрдоिрд▓ рдХрд░ें:\n1. рд╕ंрдХ्рд╖िрдк्рдд рдкрд░िрдЪрдп\n2. рдоुрдЦ्рдп рддрде्рдп рдФрд░ рд╡िрдХाрд╕\n3. рд╡िрднिрди्рди рд╕्рд░ोрддों рдХे рджृрд╖्рдЯिрдХोрдг\n4. рд╕ोрд╢рд▓ рдоीрдбिрдпा рдХे рд▓िрдП рдоुрдЦ्рдп рдмिंрджु\n\nрднाрд╖ा: рд╣िंрджी\nрд▓ंрдмाрдИ: 400 рд╢рдм्рдж\n`;\n\nreturn { prompt: prompt, articles: data.articles };"
},
"id": "code-9",
"name": "Create Report Prompt",
"type": "n8n-nodes-base.code",
"typeVersion": 1,
"position": [1450, 300]
},
{
"parameters": {
"method": "POST",
"url": "https://api.openai.com/v1/chat/completions",
"authentication": "genericCredentialType",
"genericAuthType": "httpHeaderAuth",
"sendHeaders": true,
"headerParameters": {
"parameters": [
{
"name": "Authorization",
"value": "Bearer YOUR_OPENAI_API_KEY"
}
]
},
"sendBody": true,
"bodyParameters": {
"parameters": [
{
"name": "model",
"value": "gpt-4"
},
{
"name": "messages",
"value": "[{\"role\":\"system\",\"content\":\"Aap ek senior journalist hain.\"},{\"role\":\"user\",\"content\":\"{{ $json.prompt }}\"}]"
}
]
},
"options": {}
},
"id": "http-8",
"name": "GPT-4 Generate Report",
"type": "n8n-nodes-base.httpRequest",
"typeVersion": 3,
"position": [1650, 300]
},
{
"parameters": {
"url": "https://api.postiz.com/public/v1/channels",
"authentication": "genericCredentialType",
"genericAuthType": "httpHeaderAuth",
"sendHeaders": true,
"headerParameters": {
"parameters": [
{
"name": "Authorization",
"value": "Bearer YOUR_POSTIZ_API_KEY"
}
]
},
"options": {}
},
"id": "http-9",
"name": "Get Postiz Channels",
"type": "n8n-nodes-base.httpRequest",
"typeVersion": 3,
"position": [1650, 400]
},
{
"parameters": {
"jsCode": "const report = $('GPT-4 Generate Report').item.json.choices[0].message.content;\nconst channels = $('Get Postiz Channels').item.json;\nconst data = $('Combine Data').item.json;\n\nconst channelMap = {};\nfor (const channel of channels) {\n channelMap[channel.platform.toLowerCase()] = channel.id;\n}\n\nconst posts = [];\nconst platformContent = {\n blogger: `# ${data.query}\\n\\n${report}\\n\\n---\\nрд╕्рд░ोрдд: ${data.articles.map(a => `[${a.source}](${a.link})`).join(', ')}`,\n instagram: `${report.substring(0, 200)}... рдЯिрдк्рдкрдгी рдоें рдкूрд░ी рдкोрд╕्рдЯ рдкрдв़ें। #${data.query.replace(/ /g, '')} #trending`,\n facebook: report.substring(0, 300) + '... рдФрд░ рдкрдв़рдиे рдХे рд▓िрдП рд▓िंрдХ рдкрд░ рдХ्рд▓िрдХ рдХрд░ें।',\n twitter: `${data.query}: ${report.substring(0, 150)}... #trending #india`,\n linkedin: `ЁЯУК рдЯ्рд░ेंрдбिंрдЧ рдЯॉрдкिрдХ: ${data.query}\\n\\n${report}`\n};\n\nfor (const [platform, content] of Object.entries(platformContent)) {\n if (channelMap[platform]) {\n posts.push({\n channelId: channelMap[platform],\n content: content,\n platform: platform\n });\n }\n}\n\nreturn posts;"
},
"id": "code-10",
"name": "Prepare Platform Posts",
"type": "n8n-nodes-base.code",
"typeVersion": 1,
"position": [1850, 400]
},
{
"parameters": {
"method": "POST",
"url": "https://api.postiz.com/public/v1/posts",
"authentication": "genericCredentialType",
"genericAuthType": "httpHeaderAuth",
"sendHeaders": true,
"headerParameters": {
"parameters": [
{
"name": "Authorization",
"value": "Bearer YOUR_POSTIZ_API_KEY"
}
]
},
"sendBody": true,
"bodyParameters": {
"parameters": [
{
"name": "type",
"value": "now"
},
{
"name": "posts",
"value": "=[{\"integration\":{\"id\":\"{{ $json.channelId }}\"},\"value\":[{\"content\":\"{{ $json.content }}\"}]}]"
}
]
},
"options": {}
},
"id": "http-10",
"name": "Post to All Platforms",
"type": "n8n-nodes-base.httpRequest",
"typeVersion": 3,
"position": [2050, 400]
}
],
"connections": {
"Cron (рджिрди рдоें 1 рдмाрд░)": {
"main": [
[
{
"node": "SerpApi - Trending Now",
"type": "main",
"index": 0
}
]
]
},
"SerpApi - Trending Now": {
"main": [
[
{
"node": "Process Trends",
"type": "main",
"index": 0
}
]
]
},
"Process Trends": {
"main": [
[
{
"node": "Split by Page Token",
"type": "main",
"index": 0
}
]
]
},
"Split by Page Token": {
"main": [
[
{
"node": "SerpApi - Get News",
"type": "main",
"index": 0
}
]
]
},
"SerpApi - Get News": {
"main": [
[
{
"node": "Combine Data",
"type": "main",
"index": 0
}
]
]
},
"Combine Data": {
"main": [
[
{
"node": "Create Report Prompt",
"type": "main",
"index": 0
}
]
]
},
"Create Report Prompt": {
"main": [
[
{
"node": "GPT-4 Generate Report",
"type": "main",
"index": 0
}
],
[
{
"node": "Get Postiz Channels",
"type": "main",
"index": 0
}
]
]
},
"Get Postiz Channels": {
"main": [
[
{
"node": "Prepare Platform Posts",
"type": "main",
"index": 0
}
]
]
},
"GPT-4 Generate Report": {
"main": [
[
{
"node": "Prepare Platform Posts",
"type": "main",
"index": 0
}
]
]
},
"Prepare Platform Posts": {
"main": [
[
{
"node": "Post to All Platforms",
"type": "main",
"index": 0
}
]
]
}
},
"settings": {
"executionOrder": "v1"
},
"staticData": null,
"pinData": {},
"versionId": "serpapi-pro-v1"
}
```
---
## ЁЯФз рд╕рдмрд╕े рдЬрд░ूрд░ी рдмрджрд▓ाрд╡ (рд╕рднी workflows рдоें)
### 1. OpenAI API Key (рддीрдиों workflows рдоें)
**Replace**: `YOUR_OPENAI_API_KEY` рдЕрдкрдиी OpenAI key рд╕े рдмрджрд▓ें
### 2. Postiz API Key (рддीрдиों workflows рдоें)
**Replace**: `YOUR_POSTIZ_API_KEY` рдЕрдкрдиी Postiz API key рд╕े рдмрджрд▓ें
### 3. Postiz Channel ID (рдкрд╣рд▓े workflow рдоें)
**Replace**: `YOUR_CHANNEL_ID` рдЕрдкрдиे Postiz channel ID рд╕े рдмрджрд▓ें
### 4. SerpApi Key (рддीрд╕рд░े workflow рдоें)
**Replace**: `YOUR_SERPAPI_KEY` рдЕрдкрдиी SerpApi key рд╕े рдмрджрд▓ें
### 5. Google Trends Geo (рд╕рднी workflows рдоें)
India рдХे рд▓िрдП: `geo=IN`
USA рдХे рд▓िрдП: `geo=US`
UK рдХे рд▓िрдП: `geo=GB`
---
## ⚡ рдХैрд╕े рд╢ुрд░ू рдХрд░ें?
1. **рдкрд╣рд▓े workflow** рд╕े рд╢ुрд░ू рдХрд░ें (рд╕рдмрд╕े рдЖрд╕ाрди)
2. 2-3 рджिрди рдЪрд▓рдиे рджें, рджेрдЦें рдХैрд╕ा рд░рд╣рддा рд╣ै
3. рдлिрд░ **рджूрд╕рд░े workflow** рдкрд░ рдЬाрдПँ
4. рдЬрдм traffic рдмрдв़ рдЬाрдП, **рддीрд╕рд░ा workflow** рд▓рдЧाрдПँ
рдХोрдИ problem рд╣ो рддो рдмрддाрдЗрдП! рдоैं рд╣рд░ step рдоें help рдХрд░ूँрдЧा। ЁЯШК
Comments
Post a Comment