Do I need a paid Pabbly plan?
No. Pabbly Connect offers a free tier and lifetime deals. The Execute API Request module is available on all plans.
Connect Aidelly to Pabbly Connect using the Execute API Request module. Automate social media posts across 11 platforms from WooCommerce, Google Sheets, Zapier, Typeform, or any app Pabbly connects to.
Create your integration key in Aidelly
In your Aidelly dashboard, go to Settings → API Keys and create a new key with `posts:write` scope. API access requires an active paid plan see plans.
Open Pabbly Connect
Go to Pabbly Connect and sign in (or create a free account). This is where you'll set up the automation.
Create a new workflow
Click "Create Workflow" and choose any trigger app that starts your automation — e.g., Google Sheets, WooCommerce, Typeform, Webhook, or Scheduler.
Add an action: API by Pabbly
In your workflow, add an action step. Search for API by Pabbly and choose Execute API Request.
Configure the HTTP request for each platform
Fill in these fields in the API by Pabbly action. To post to multiple platforms, add one API action per destination (duplicate the step for each platform).
| Method | POST |
| Endpoint URL | https://app.aidelly.ai/api/public/v1/posts |
| Payload type | JSON |
| Authorization | No Auth (use headers) |
| Headers → Authorization | Bearer YOUR_API_KEY |
| Headers → Content-Type | application/json |
| Headers → Idempotency-Key | pabbly-test-001 |
Shortcut: Click ⋮ → Import cURL and paste the example below. Omit scheduled_at to publish immediately. Then replace static values with mapped fields from your trigger.
Set the JSON body and test
In the request body, map your Pabbly trigger fields to the Aidelly post body:
{
"platform": "linkedin",
"content": "{{your_trigger_field}}"
}To post to multiple platforms, change the platform value (e.g., "instagram") and add one API action per destination. Click "Save and Send Test Request". Expect a 200 response. Then turn the workflow ON — it will run whenever your trigger fires.
WooCommerce trigger → announce a sale on LinkedIn and X automatically when a new order comes in.
Keep your content calendar in Google Sheets. When a row status changes to "Ready", Pabbly picks it up and posts to Aidelly.
Collect leads or ideas via Typeform. When a submission matches criteria, Pabbly sends it to Aidelly for social amplification.
Use Pabbly Scheduler to send posts to Aidelly at specific times daily, weekly, or on custom schedules. Perfect for timezone-aware teams.
platform fieldUse one platform per API action. To post to multiple platforms, add one API by Pabbly action for each destination.
No. Pabbly Connect offers a free tier and lifetime deals. The Execute API Request module is available on all plans.
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, bluesky. Mix and match as needed.
Pabbly lets you map any field from earlier steps into the request body using {{field}} tokens. Import a cURL example and replace static values with mapped fields.
Yes. Include an `Idempotency-Key` header to ensure retries don't create duplicate posts. The public API requires this on all POST requests.