Make Integration

Automate social media posting from any Make scenario.

Use Make's HTTP module to call the Aidelly REST API from any workflow. Post to Instagram, TikTok, YouTube, X, LinkedIn, and Facebook triggered by anything in your Make scenario.

Connect Aidelly to Make in 4 steps

1

Generate an Aidelly API key

In your Aidelly dashboard, go to Settings → API Keys and create a new key. Copy it you'll paste it into Make in the next step. API access requires an active paid plan see plans.

2

Add an HTTP → Make a request module

In your Make scenario, add a new module. Search for HTTP and choose Make a request.

3

Configure the HTTP module

Fill in the following fields in the Make HTTP module:

URLhttps://api.aidelly.ai/v1/posts
MethodPOST
HeadersAuthorization: Bearer YOUR_API_KEY
Body typeRaw
Content typeapplication/json
4

Set the request body

In the Raw body field, enter your JSON payload. Map Make variables using {{variable}} syntax:

{
  "content": "{{post_content}}",
  "platforms": ["instagram", "linkedin", "x"],
  "schedule_at": "{{schedule_time}}"
}

Omit schedule_at to publish immediately.

What you can build

Publish on form submission

When someone fills out a Typeform or Airtable form, trigger a post to LinkedIn or Instagram automatically.

Schedule from a Google Sheet

Read post content and schedule times from a spreadsheet, send each row to Aidelly via HTTP, and watch your calendar fill up.

Repurpose blog posts

New WordPress or Webflow post? Use Make to extract the content, pass it to an AI module for captions, then post via Aidelly.

Announce product updates

Connect your CRM or product database whenever a deal closes or a feature ships, Make posts the announcement across all channels.

Key API endpoints

  • POST/v1/postsCreate or schedule a post
  • GET/v1/postsList scheduled and published posts
  • GET/v1/analyticsFetch performance analytics
  • POST/v1/mediaUpload an image or video

Common questions

Do I need a native Aidelly app in Make?

No. Make's HTTP module is all you need. It connects to Aidelly's REST API directly no native app required.

Which HTTP method should I use?

Use POST for creating posts, GET for reading analytics or scheduled posts. The Aidelly API follows standard REST conventions.

How do I handle errors in Make?

Add an Error Handler route after the HTTP module. Aidelly returns standard HTTP status codes and JSON error bodies, making it easy to branch on failures.

Can I schedule posts for a future time?

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