Aidelly Docs
Getting Started

Overview

How Aidelly works and which integration path to choose.

Aidelly is a social media scheduler built for programmatic use. You can reach every Aidelly feature from three distinct layers:

LayerBest forEntry point
REST APICustom apps, backend automation, agentshttps://app.aidelly.ai/api/public/v1
MCP ServerClaude, ChatGPT, Cursor, any MCP clienthttps://app.aidelly.ai/mcp
IntegrationsNo-code workflows in Zapier, Make, n8nPlatform-native connectors

Core concepts

Workspaces and brands

Every API call is scoped to a workspace (organization) and optionally a brand (a publishing identity within that workspace). Most endpoints accept:

  • x-aidelly-workspace-id header
  • x-aidelly-brand-id header

You can find these IDs in Account Settings → API Keys.

Posts

A post is a single piece of content scheduled or published to one social platform account. Posts have a lifecycle:

draft → scheduled → publishing → completed
                                 failed
                                 canceled

Media

Upload images and videos first via the signed upload URL endpoint, then reference the returned read_url when creating posts.

Idempotency

All write endpoints (POST, PATCH) require an Idempotency-Key header. Use a stable key per logical write and reuse the same key on retries. See Idempotency for details.

Requirements

  • An active Aidelly subscription (Launch, Scale, or Agency)
  • At least one social account connected in the Aidelly dashboard
  • An API key with the required scopes

Next steps