n8n
Automate Tareno with n8n
Learn how to connect n8n workflows to Tareno to automatically schedule posts, analyze data, and manage your social media presence.
1
Get your API Key
First, you'll need to generate an API key from your Tareno dashboard settings. This key will allow n8n to authenticate with your account.
Go to Settings > API & Integrations > Create New Key
2
Configure the HTTP Request Node
In n8n, add an HTTP Request node to your workflow. Configure it with the following settings to create a new post:
API Endpoint
POST https://api.tareno.com/v1/posts/create
Authentication
Authorization: Bearer YOUR_API_KEY
Headers
Content-Type: application/json
3
Define the Body
Paste the following JSON into the Body Parameter section of the HTTP Request node. You can map variables from previous nodes (like OpenAI generated text) into these fields.
{
"content": "Just launched our new feature! 🚀 #SaaS #Growth",
"mediaUrls": ["https://example.com/image.png"],
"platforms": ["twitter", "linkedin"],
"scheduleAt": "2024-05-20T10:00:00Z" // Optional: leave empty to post now
}