Pabbly Connect Integration

Trigger social media posts from Pabbly Connect workflows.

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.

Connect Aidelly to Pabbly Connect in 6 steps

1

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.

2

Open Pabbly Connect

Go to Pabbly Connect and sign in (or create a free account). This is where you'll set up the automation.

3

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.

4

Add an action: API by Pabbly

In your workflow, add an action step. Search for API by Pabbly and choose Execute API Request.

5

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).

MethodPOST
Endpoint URLhttps://app.aidelly.ai/api/public/v1/posts
Payload typeJSON
AuthorizationNo Auth (use headers)
Headers → AuthorizationBearer YOUR_API_KEY
Headers → Content-Typeapplication/json
Headers → Idempotency-Keypabbly-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.

6

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.

What you can automate

WooCommerce order → LinkedIn announcement

WooCommerce trigger → announce a sale on LinkedIn and X automatically when a new order comes in.

Google Sheets content calendar

Keep your content calendar in Google Sheets. When a row status changes to "Ready", Pabbly picks it up and posts to Aidelly.

Typeform responses → social posts

Collect leads or ideas via Typeform. When a submission matches criteria, Pabbly sends it to Aidelly for social amplification.

Time-based scheduled posts

Use Pabbly Scheduler to send posts to Aidelly at specific times daily, weekly, or on custom schedules. Perfect for timezone-aware teams.

Supported platforms in the platform field

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

Use one platform per API action. To post to multiple platforms, add one API by Pabbly action for each destination.

Common questions

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.

Can I schedule posts in advance?

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

Which platforms can I post to?

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

How do I map Pabbly fields into the post content?

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.

Is there Idempotency-Key support?

Yes. Include an `Idempotency-Key` header to ensure retries don't create duplicate posts. The public API requires this on all POST requests.