Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.mymarky.ai/llms.txt

Use this file to discover all available pages before exploring further.

This guide covers API-based integration. If you’re looking for an iframe embed, that’s not currently supported. The API is the recommended integration path.

Overview

Use the Marky API to create social posts from Go High Level workflows. When a client onboards, a blog publishes, or a campaign launches, GHL can send captions and metadata to Marky so posts land in your queue ready to review or schedule.

Setup

1. Get your API key

Create an API key in your Marky dashboard (Organization Settings > API Keys).

2. Find your business ID

Each GHL sub-account maps to a Marky workspace. Find the workspace ID via GET https://api.mymarky.ai/api/businesses.

3. Create a GHL workflow

In Go High Level, create a new Workflow with an HTTP action: Trigger: Whatever event you want (new contact, blog published, campaign started) Action: Custom Webhook / HTTP Request
Method: POST
URL: https://api.mymarky.ai/api/posts
Headers:
  Authorization: Bearer mk_live_your_key_here
  Content-Type: application/json
Body:
{
  "business_id": "your-workspace-id",
  "caption": "{{trigger.description}}",
  "publish_to": ["instagram", "facebook"]
}

4. Schedule the post (optional)

Add another HTTP action:
Method: POST
URL: https://api.mymarky.ai/api/posts/{{post_id}}/schedule
Headers:
  Authorization: Bearer mk_live_your_key_here
  Content-Type: application/json
Body:
{
  "publish_at": "2026-04-15T14:00:00Z",
  "publish_to": ["instagram", "facebook"]
}

White-label agencies

If you white-label GHL for your clients, each client’s GHL sub-account should map to a separate Marky workspace. Use the same API key (org-scoped) but pass different business_id values per client.

Rate limits

100 requests/minute per API key. These limits apply across all workspaces in your org.