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.

Overview

Connect Marky to your automation stack. Common workflows:
  • Blog published → social posts — RSS trigger → create post in Marky → schedule
  • New lead in CRM → welcome posts — CRM trigger → create branded content
  • Weekly content batch — Schedule trigger → create a week of posts from your templates or sheet data

Zapier setup

1. Create a Zap with a Webhooks action

Zapier doesn’t have a native Marky integration (yet), so use the Webhooks by Zapier action. Trigger: Choose your trigger (RSS, Google Sheets, CRM, Schedule, etc.) Action: Webhooks by Zapier > Custom Request
Method: POST
URL: https://api.mymarky.ai/api/posts
Headers:
  Authorization: Bearer mk_live_your_key_here
  Content-Type: application/json
Data:
{
  "business_id": "your-workspace-id",
  "caption": "{{trigger_content}}",
  "publish_to": ["instagram", "linkedin"]
}

2. Schedule the post (optional)

Add another Webhooks > Custom Request step:
Method: POST
URL: https://api.mymarky.ai/api/posts/{{post_id_from_step_1}}/schedule
Headers:
  Authorization: Bearer mk_live_your_key_here
  Content-Type: application/json
Data:
{
  "publish_at": "2026-04-15T14:00:00Z"
}

Make (Integromat) setup

1. Create a scenario with an HTTP module

Trigger: Your choice (RSS, Webhook, Schedule, etc.) Action: HTTP > Make a request
FieldValue
URLhttps://api.mymarky.ai/api/posts
MethodPOST
HeadersAuthorization: Bearer mk_live_your_key_here
Body typeRaw > JSON
Body{"business_id":"...","caption":"{{content}}","publish_to":["instagram"]}

2. Schedule (optional)

Add another HTTP module to schedule the post using the ID from step 1.

Rate limits

100 requests/minute per API key. A weekly batch of 10 posts uses ~20 requests.

Tips

  • Schedule in Marky, not your automation tool: Use the /posts/{id}/schedule endpoint to let Marky handle publishing at the right time for each platform.
  • Use the library: Push content into Marky’s library via /api/library/files for reuse across multiple posts.