Do I need the Zapier premium plan?
Webhooks by Zapier requires a paid Zapier plan. Alternatively, you can use the Code by Zapier action on any plan to make HTTP requests.
Connect Aidelly to 7,000+ apps via Zapier. Use Webhooks by Zapier to call the Aidelly REST API and post to Instagram, TikTok, YouTube, X, LinkedIn, and Facebook triggered by anything.
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 new Zap and set your trigger
Choose any trigger app Gmail, Notion, HubSpot, RSS, or whatever starts your workflow.
Add a Webhooks by Zapier action
In your Zap, add an action step. Search for Webhooks by Zapier and choose POST.
Configure the Webhook action
Fill in these fields:
| URL | https://api.aidelly.ai/v1/posts |
| Payload type | JSON |
| Headers → Authorization | Bearer YOUR_API_KEY |
| Headers → Content-Type | application/json |
Set the Data fields (JSON body)
In the Data section, map your Zapier fields to the Aidelly request body:
{
"content": "{{your_post_content}}",
"platforms": ["instagram", "linkedin", "x"],
"schedule_at": "{{schedule_time}}"
}Map your_post_content and schedule_time from earlier trigger or action steps.
HubSpot deal → Zapier → Aidelly. Announce wins to LinkedIn and X automatically the moment the deal status changes.
RSS feed or WordPress trigger → format caption with ChatGPT action → post via Aidelly. Your content distributes itself.
Use a Notion database as your content calendar. When a post moves to "Ready", Zapier picks it up and sends it to Aidelly.
Connect your CI/CD pipeline, GitHub releases, or your changelog tool trigger a social post the moment something ships.
platforms fieldPass any combination in the array. Omitting a platform means it won't receive the post.
Webhooks by Zapier requires a paid Zapier plan. Alternatively, you can use the Code by Zapier action on any plan to make HTTP requests.
Yes. Include `schedule_at` in the JSON body with an ISO 8601 timestamp. Aidelly will hold the post and publish at the right time.
Pass the `platforms` array in your request body. Valid values: instagram, tiktok, youtube, x, linkedin, facebook. Mix and match as needed.
Yes. Zapier lets you map any field from earlier steps into the request body. Use Zapier's {{field}} tokens or build the JSON string in a Formatter step.