Get draft
Retrieve a specific draft by ID, including its content for all configured platforms, status, and scheduling information.
If the draft has comment threads, the response includes Typefully comment-thread markers in posts[*].text and, for X Articles, in platforms.x_article.content_markdown. These markers are structural anchor metadata for GET → modify → PATCH round-trips; preserve them exactly when editing.
For read-only display/export, pass ?exclude_comment_markers=true to render draft text without markers. Content returned with that flag set should not be PATCHed back unless you intend to resolve or remove comment anchors.
Required permission: READ access to this social set.
Path parameters
Query parameters
When true, render posts[*].text as plain user-visible text without <typ:comment-thread> markers, and render X Article content_markdown without comment markers. Use only for read-only flows (LLM context windows, exports). The default (false) emits markers so a round-trip back to PATCH preserves comment anchors.
When true, render posts[*].text as plain user-visible text without <typ:comment-thread> markers, and render X Article content_markdown without comment markers. Use only for read-only flows (LLM context windows, exports). The default (false) emits markers so a round-trip back to PATCH preserves comment anchors.
Response
OK
Example response
{
"id": 12345,
"social_set_id": 67890,
"draft_id": 12345,
"status": "draft",
"created_at": "2025-01-15T10:30:00Z",
"updated_at": "2025-01-16T09:15:00Z",
"scheduled_date": "2025-01-20T14:00:00Z",
"published_at": "2025-01-20T14:00:05Z",
"draft_title": "Weekly Newsletter",
"tags": [
"marketing",
"product"
],
"preview": "Excited to announce our new feature! 🚀",
"share_url": "https://typefully.com/share/abc123",
"private_url": "https://typefully.com/?d=12345&a=67890",
"platforms": {
"x": {
"posts": [
{
"subscribers_only": true,
"paid_partnership": true,
"made_with_ai": true
}
],
"settings": {
"reply_to_url": "https://x.com/therajatkapoor/status/1399394576951959554"
}
}
},
"x_published_url": "https://x.com/username/status/1234567890",
"linkedin_published_url": "https://www.linkedin.com/feed/update/urn:li:share:1234567890",
"mastodon_published_url": "https://mastodon.social/@username/1234567890",
"threads_published_url": "https://www.threads.net/@username/post/ABC123",
"bluesky_published_url": "https://bsky.app/profile/username.bsky.social/post/abc123",
"substack_published_url": "https://substack.com/@username/note/c-123456789",
"x_article_published_url": "https://x.com/i/article/1234567890",
"x_post_published_at": "2025-01-20T14:00:05Z",
"linkedin_post_published_at": "2025-01-20T14:00:08Z",
"mastodon_post_published_at": "2025-01-20T14:00:10Z",
"threads_post_published_at": "2025-01-20T14:00:12Z",
"bluesky_post_published_at": "2025-01-20T14:00:15Z",
"substack_post_published_at": "2025-01-20T14:00:15Z",
"x_article_published_at": "2025-01-20T14:00:15Z",
"scratchpad_text": "line 1\nline 2\n\nline 4"
}