Zapier Integration

Trigger social media posts from any Zapier workflow.

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.

Connect Aidelly to Zapier in 5 steps

1

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.

2

Create a new Zap and set your trigger

Choose any trigger app Gmail, Notion, HubSpot, RSS, or whatever starts your workflow.

3

Add a Webhooks by Zapier action

In your Zap, add an action step. Search for Webhooks by Zapier and choose POST.

4

Configure the Webhook action

Fill in these fields:

URLhttps://api.aidelly.ai/v1/posts
Payload typeJSON
Headers → AuthorizationBearer YOUR_API_KEY
Headers → Content-Typeapplication/json
5

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.

What you can automate

Post when a deal closes in HubSpot

HubSpot deal → Zapier → Aidelly. Announce wins to LinkedIn and X automatically the moment the deal status changes.

Share new blog posts automatically

RSS feed or WordPress trigger → format caption with ChatGPT action → post via Aidelly. Your content distributes itself.

Publish Notion content to social

Use a Notion database as your content calendar. When a post moves to "Ready", Zapier picks it up and sends it to Aidelly.

Alert followers after a product launch

Connect your CI/CD pipeline, GitHub releases, or your changelog tool trigger a social post the moment something ships.

Supported platforms in the platforms field

"instagram""tiktok""youtube""x""linkedin""facebook"

Pass any combination in the array. Omitting a platform means it won't receive the post.

Common questions

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.

Can I schedule posts for later?

Yes. Include `schedule_at` in the JSON body with an ISO 8601 timestamp. Aidelly will hold the post and publish at the right time.

How do I post to specific platforms only?

Pass the `platforms` array in your request body. Valid values: instagram, tiktok, youtube, x, linkedin, facebook. Mix and match as needed.

Can I map Zapier fields into the post content?

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.