Drafts
Create draft
Create a new draft with content for one or more social media platforms. The draft can be saved as a draft, scheduled for later publishing, or published immediately.
Account-level settings: This endpoint automatically applies the following account-level settings if enabled: Auto-Retweet, Auto-Plug, and Natural Posting Time.
Required permission: WRITE access to create drafts. PUBLISH access is required to schedule or publish immediately.
post/v2/social-sets/{social_set_id}/drafts
Path parameters
social_set_idinteger required
Request body
Example request
{
"platforms": {
"x": {
"posts": [
{
"text": "Hello world! This is my first post.",
"media_ids": [
"550e8400-e29b-41d4-a716-446655440000"
],
"quote_post_url": "https://x.com/typefully/status/2025894220243063023"
}
],
"settings": {
"reply_to_url": "https://x.com/therajatkapoor/status/1399394576951959554"
}
},
"linkedin": {
"posts": [
{
"text": "Thanks @[Typefully](urn:li:organization:86779668) for the support!",
"media_ids": [
"550e8400-e29b-41d4-a716-446655440000"
],
"linkedin_reshare_target": "urn:li:share:7437089188157554688"
}
]
},
"mastodon": {
"posts": [
{
"text": "Hello world! This is my first post.",
"media_ids": [
"550e8400-e29b-41d4-a716-446655440000"
]
}
]
},
"threads": {
"posts": [
{
"text": "Hello world! This is my first post.",
"media_ids": [
"550e8400-e29b-41d4-a716-446655440000"
]
}
]
},
"bluesky": {
"posts": [
{
"text": "Hello world! This is my first post.",
"media_ids": [
"550e8400-e29b-41d4-a716-446655440000"
]
}
]
},
"substack": {
"posts": [
{
"text": "Hello world! This is my first post.",
"media_ids": [
"550e8400-e29b-41d4-a716-446655440000"
]
}
]
},
"x_article": {
"content_markdown": "# Think Different, Draft Different\n\nGreat drafts start when builders **question defaults**, *shape the rough edges*, and ~~wait for perfect certainty~~ publish what helps.\n\n> The best interface is the one readers forget they are using.\n\n# Working notes\n\n- Start with a sharp title\n- Use structure before decoration\n- Link only when [context helps](https://typefully.com)\n\n## Final pass\n\n1. Cut filler\n2. Keep the useful tension\n3. Ship the clearer version",
"cover_media_id": "550e8400-e29b-41d4-a716-446655440000"
}
},
"draft_title": "Weekly Newsletter",
"scratchpad_text": "line 1\nline 2\n\nline 4",
"tags": [
"marketing",
"product"
]
}Response
Created
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"
}