
- Deep research the social post
- Generates high CTR image like a banner ad based on the research
- Human approval checkpoints (Telegram) for posts and image (with revision nodes built in)
- Uploads content to Linkedin
- New n8n users: Start free trial here
Perplexity Deep Research cURL Import
curl -X POST https://api.perplexity.ai/chat/completions \
-H "Authorization: Bearer INSERT API KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "sonar",
"messages": [
{
"role": "system",
"content": "you are a professional researcher that analyzes the input and research the web to provide insightful data"
},
{
"role": "user",
"content": "research interesting angles and actionable things people can do regarding this topic: {{ $json.Topics }}"
}
]
}'
ChatGPT 4o Image Model HTTP Request cURL Import
curl -X POST https://api.openai.com/v1/images/generations \
-H "Authorization: Bearer INSERT YOUR API" \
-H "Content-Type: application/json" \
-d '{
"model": "gpt-image-1",
"prompt": "based on the research you have done i want you to create an easy to understand visual illustration of the concept with a call to action. The overall image style should be minimalistic, and its only job is to guide the eye to the call to action like a banner ad.",
"size": "1024x1024"
}'