Does n8n have a native Aidelly node?
Not yet. Use the built-in HTTP Request node it handles all REST API calls and is fully supported in both n8n Cloud and self-hosted instances.
Use n8n's HTTP Request node to call the Aidelly REST API from any workflow. Post to Instagram, TikTok, YouTube, X, LinkedIn, and Facebook triggered by databases, AI nodes, webhooks, or cron jobs.
Generate an Aidelly API key
In your Aidelly dashboard, go to Settings → API Keys and create a new key. API access requires an active paid plan see plans.
Create a Header Auth credential in n8n
Go to Credentials → New and search for Header Auth. Set name to Authorization and value to Bearer YOUR_API_KEY.
Add an HTTP Request node to your workflow
In your workflow editor, click + and search for HTTP Request. Connect it after your trigger or content-generation step.
Configure the HTTP Request node
Set these fields in the node:
| Method | POST |
| URL | https://api.aidelly.ai/v1/posts |
| Authentication | Header Auth (select your credential) |
| Body Content Type | JSON |
| Specify Body | Using JSON |
Set the JSON body
Paste this into the JSON body field. Use n8n expressions to map values from upstream nodes:
{
"content": "={{ $node['AI'].json.caption }}",
"platforms": ["instagram", "linkedin", "tiktok"],
"schedule_at": "={{ $node['Trigger'].json.post_time }}"
}Replace node names with your actual upstream node names. Omit schedule_at to publish immediately.
Combine the AI node (OpenAI/Claude) with the Aidelly HTTP node. Feed a topic in, get a caption out, post automatically.
Read rows from Postgres, MySQL, or Airtable, then loop through them and send each post to Aidelly on a cron schedule.
Trigger on RSS feed updates, new YouTube uploads, or GitHub releases and push announcements to all social channels.
Use n8n's Switch node to route content to different Aidelly API keys per client account, all from a single workflow.
Not yet. Use the built-in HTTP Request node it handles all REST API calls and is fully supported in both n8n Cloud and self-hosted instances.
Create a Credential of type "Header Auth" in n8n with the name "Authorization" and value "Bearer YOUR_API_KEY". Then select it in the HTTP Request node under Authentication.
Yes. n8n's expression editor lets you reference any upstream node's data with {{ $node["NodeName"].json.field }}. Build your content string dynamically from any source.
Yes. The HTTP Request node works identically on n8n Cloud and self-hosted. As long as your n8n instance has outbound internet access, it can reach api.aidelly.ai.