Parabola

🚀 Using MarketingBlocks API in Parabola

✅ Step 1: Get Your Bearer Token

  • Visit: https://app.marketingblocks.ai/api-token/

  • Copy the generated token that begins with mab_...


✅ Step 2: Use API Import/Export

  • Drag in an API Import step.

  • Configure it with:

    • Method: POST or GET

    • URL: Your MarketingBlocks API endpoint

    • Headers:

      • Authorization: Bearer mab_xxxxxxxxxxxxx

      • Content-Type: application/json

    • Body: Paste your raw JSON request payload.

  • (Optional) Use the API Export step to send data from Parabola to external services.


📘 Example: Fetching Channels

  • Method: GET

  • URL: https://app.marketingblocks.ai/api/v1/social-sparks/get-channels

  • Headers:

    • 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
}

Last updated