Automate everything
with Make
Connect FastSocial to 1,500+ apps — no code required. Trigger scenarios when posts publish, schedule content from Google Sheets, or auto-notify your team in Slack.
5
Triggers
2
Modules
1,500+
Connected Apps
Real-time
Webhook delivery
0
Code needed
Connect in 3 steps
- 1
Get your API key
Log into FastSocial, go to Settings → API Keys, and generate a new key. It starts with fsk_.
- 2
Add an HTTP module in Make
In your Make scenario, add an HTTP module. Set the Authorization header to Bearer YOUR_KEY and point it at fastsocial.ai/api/v1/.
- 3
Build your scenario
Pick a trigger (like Custom Webhook for Post Published) and connect it to any app — Slack, Sheets, Notion, HubSpot, and 1,500 more.
Start a scenario when something happens in FastSocial
5 triggers available — 3 are instant (webhook-powered), 2 poll every 15 minutes.
Post Published
InstantFires the moment a post is successfully published to a social platform. Use it to log to Airtable, send a Slack notification, or update a CRM.
Post Scheduled
InstantFires when a new post is queued for publishing. Useful for triggering content approval workflows or syncing to a content calendar.
Post Failed
InstantFires when a post fails to publish. Automatically alert your team or create a support ticket to avoid missed content.
New Client Added
PollingTriggers when a new client account is created. Ideal for onboarding automation — add them to your CRM, send a welcome email, or kick off a project.
Social Account Connected
PollingTriggers when a client connects a social media account. Notify your team or update a tracking spreadsheet automatically.
Do something in FastSocial from any scenario
Schedule a Post
ActionCreate and schedule a social media post from any Make scenario. Pass in the content, platform, and optional publish time or image URL.
Find a Client
SearchLook up a FastSocial client by name. Returns the client ID, website, and tagline — chain it into the Schedule a Post module.
Popular scenarios
Notify your team every time content goes live.
Get an instant email alert whenever publishing fails.
Turn a content calendar spreadsheet into scheduled posts.
Keep your client roster in sync automatically.
Log every scheduled post to your Notion content database.
Track published content activity in your CRM.
Build with the Make HTTP Module
No native Make app required — use Make's built-in HTTP module and Custom Webhooks to connect any FastSocial event or action to your scenario.
// Make Webhook Module — Instant Trigger
// 1. Add a "Webhooks > Custom webhook" module to your scenario
// 2. Copy the webhook URL Make provides
// 3. Register it in FastSocial:
POST https://fastsocial.ai/api/v1/webhooks
Authorization: Bearer YOUR_FSK_API_KEY
Content-Type: application/json
{
"url": "https://hook.make.com/YOUR_WEBHOOK_ID",
"events": ["post.published"]
}
// FastSocial will send this payload on each event:
{
"event": "post.published",
"data": {
"id": "post_abc123",
"platform": "instagram",
"text": "Your post content here",
"image_url": "https://...",
"published_at": "2026-07-15T18:00:00Z",
"client_id": "client_xyz"
}
}Trigger module
Webhooks › Custom webhook
Add a Custom Webhook module, copy its URL, and register it at POST /api/v1/webhooks.
Action module
HTTP › Make a request
Use POST /api/v1/posts to schedule posts, or GET /api/v1/clients to look up clients.
Auth type
API Key (Bearer token)
Set the Authorization header to Bearer fsk_your_key in every HTTP module.
Webhook security
HMAC-SHA256 signature
Every delivery includes an X-FastSocial-Signature header you can verify in a Make router or filter.
Need the full REST API?
The Make integration is powered by the FastSocial REST API. Full reference, code examples, and SDK available.
Frequently asked questions
Ready to automate?
Connect FastSocial to your favorite tools in minutes. No developer needed.