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
| Field | Value |
|---|---|
| Method | POST |
| URL | https://api.mymarky.ai/api/posts |
| Authentication | Header Auth |
| Header Name | Authorization |
| Header Value | Bearer mk_live_your_key_here |
| Body Type | JSON |
2. Body
3. Schedule the post (optional)
Add a second HTTP Request node:| Field | Value |
|---|---|
| Method | POST |
| URL | https://api.mymarky.ai/api/posts/{{ $json.id }}/schedule |
| Body | {"publish_at": "{{ $json.scheduled_time }}"} |
