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 n8n for automated social media posting. Common workflows:
  • Blog published → social posts — RSS trigger → create post in Marky → schedule
  • New lead → welcome posts — CRM trigger → create branded social content
  • Weekly batch — Schedule trigger → create a week of posts

Setup

1. Create an HTTP Request node

FieldValue
MethodPOST
URLhttps://api.mymarky.ai/api/posts
AuthenticationHeader Auth
Header NameAuthorization
Header ValueBearer mk_live_your_key_here
Body TypeJSON

2. Body

{
  "business_id": "your-workspace-id",
  "caption": "{{ $json.caption }}",
  "publish_to": ["instagram", "linkedin"]
}

3. Schedule the post (optional)

Add a second HTTP Request node:
FieldValue
MethodPOST
URLhttps://api.mymarky.ai/api/posts/{{ $json.id }}/schedule
Body{"publish_at": "{{ $json.scheduled_time }}"}
n8n’s built-in looping makes it easy to create multiple posts and schedule them with staggered times.

Rate limits

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