Make.com
🚀 Using MarketingBlocks API in Your Workflow
✅ Step 1: Get Your Bearer Token
Copy the generated token that begins with
mab_...
✅ Step 2: Create Your Scenario
Add a trigger (e.g., Webhook, Scheduler, or any event source).
Add an HTTP module → Select Make a request.
Fill in the request details:
Method:
POST(orGET, depending on the endpoint)URL: Example:
Create Post →
https://app.marketingblocks.ai/api/v1/social-sparks/create-postGet Channels →
https://app.marketingblocks.ai/api/v1/social-sparks/get-channels
Headers:
Authorization: Bearer mab_xxxxxxxxContent-Type: application/json
Body Type: Raw
Content Type:
application/jsonBody Content: Paste your JSON payload (for POST requests).
✅ Step 3: Run & Test
Click Run Once (or Execute) to test the integration.
If successful, you’ll see the API response.
Save and activate the scenario to go live.
📘 Example: Fetching Channels
Method: GET
URL:
https://app.marketingblocks.ai/api/v1/social-sparks/get-channelsHeaders:
Authorization: Bearer mab_abc123xyz456...Success Response:
{
"channels": {
"current_page": 1,
"data": [
{
"channel_id": 254,
"platform": "facebook",
"account_name": "Jon Snow",
"avatar": "https://example.com/avatar.jpg"
}
],
"total": 1
},
"status": true
}✅ Rate Limiting Notice The API is limited to 100 requests per second per token. Avoid loops or large parallel runs that exceed this limit.
Last updated