Integrations
Integrations Overview
Connect Aidelly to no-code tools and your own stack via the REST API.
Aidelly integrates with no-code automation platforms and any tool that can make HTTP requests.
Integration options
| Integration | Best for |
|---|---|
| Zapier | Connecting 7,000+ apps without code |
| Make | Visual automation workflows |
| n8n | Self-hosted or cloud automation |
| REST API | Custom code integrations |
All integrations use the same Aidelly REST API. You call POST /posts with your content and platforms, and Aidelly handles publishing.
Quick reference
Base URL: https://app.aidelly.ai/api/public/v1
Auth header:
Authorization: Bearer YOUR_API_KEYMinimum post request:
{
"brand_id": "uuid",
"content": "Your post text",
"platforms": ["linkedin", "instagram"],
"publish_now": true
}Supported platforms:
instagram · tiktok · youtube · x · linkedin · facebook · bluesky
Getting your API key
Generate an API key from Settings → API Keys in your Aidelly dashboard. API access requires an active paid plan.
See Authentication for key scopes and header requirements.