/social-media/create

Recent Requests
Log in to see full request history
TimeStatusUser Agent
Retrieving recent requests…
LoadingLoading…

Create

Create and schedule a social media post/draft across one or more connected accounts, with optional media, auto-comments, and platform-specific configurations.

💬 comments Parameter Reference

Pass a comments array to publish one or more auto-comments to the post after it goes live. Each entry is published in array order once the post is live.

"comments": [
  { "message": "Thanks for reading! 🙌", "delay": 0 },
  { "message": "Follow for more updates.", "delay": 120 },
  { "message": "Link in bio 👇", "delay": 300 }
]
FieldTypeRequiredDefaultDescription
messagestringNo""The comment text.
delayinteger (seconds)No0Seconds to wait after the post is published before posting this comment.

Notes:

  • delay is cast to an integer, so "60" (string) and 60 are equivalent.
  • A comment with no message is still accepted; message defaults to an empty string.
  • Comments are processed in array order.
  • Omit comments (or send comments: []) for no auto-comments.

📦 additional Parameter Reference

The additional object allows platform-specific enhancements to your scheduled posts.


🟢 Google

"google": {
  "post": {
    "title": "title post",
    "topicType": "STANDARD",
    "couponCode": "coupon code",
    "callToActionUrl": "call to action url",
    "redeemOnlineUrl": "redeem online url",
    "termsConditions": "terms conditions",
    "callToActionType": "SIGN_UP"
  }
}
FieldTypeDescription
titlestringTitle of the post
topicTypestringPost topic type (e.g., STANDARD)
couponCodestringCoupon code for promotions
callToActionUrlstringURL for CTA button
redeemOnlineUrlstringURL to redeem offers online
termsConditionsstringTerms and conditions text
callToActionTypestringCTA type (SIGN_UP, LEARN_MORE, etc.)

🎵 TikTok / TikTok Business

"tiktok": {
  "post": {
    "brandContent": true,
    "brandOrganic": true,
    "duetDisabled": true,
    "privacyStatus": "PUBLIC_TO_EVERYONE",
    "stitchDisabled": true,
    "commentDisabled": true
  },
  "channel": {
    "value": "direct"
  },
  "postType": {
    "value": "video"
  },
  "postPhoto": {
    "title": "Video title",
    "brandContent": true,
    "brandOrganic": true,
    "duetDisabled": true,
    "privacyStatus": "PUBLIC_TO_EVERYONE",
    "stitchDisabled": true,
    "commentDisabled": true
  }
}
FieldTypeDescription
brandContentbooleanMarks as branded content
brandOrganicbooleanMarks as organic brand content
duetDisabledbooleanDisables duet feature
privacyStatusstringVisibility (PUBLIC_TO_EVERYONE, etc.)
stitchDisabledbooleanDisables stitch
commentDisabledbooleanDisables comments
channel.valuestringChannel type (e.g., direct)
postType.valuestringType of content (video, photo, etc.)
postPhoto.titlestringTitle of the TikTok video for image-based posts

🧵 Threads

"threads": {
  "channel": {
    "value": "direct"
  }
}
FieldTypeDescription
channel.valuestringPosting method (direct)

📺 YouTube

"youtube": {
  "post": {
    "title": "YT title video",
    "license": "creativeCommon",
    "privacyStatus": "public",
    "selfDeclaredMadeForKids": "yes"
  },
  "postType": {
    "value": "short"
  }
}
FieldTypeDescription
titlestringVideo title
licensestringstandard or creativeCommon
privacyStatusstringpublic, private, or unlisted
selfDeclaredMadeForKidsstringyes or no
postType.valuestringVideo type (short, video)

📘 Facebook

"facebook": {
  "postType": {
    "value": "story"
  }
}
FieldTypeDescription
postType.valuestringstory, feed, etc.

💼 LinkedIn

"linkedin": {
  "audience": {
    "value": "PUBLIC"
  }
}
FieldTypeDescription
audience.valuestringPUBLIC, CONNECTIONS, etc.

📸 Instagram

"instagram": {
  "postReel": {
    "audioName": "Audio name",
    "shareToFeed": true
  },
  "postType": {
    "value": "post"
  }
}
FieldTypeDescription
audioNamestringCustom audio track for reel
shareToFeedbooleanAlso share reel to the Instagram feed
postType.valuestringPost type (post, reel, etc.)

📌 Pinterest

"pinterest": {
  "post": {
    "link": "link",
    "title": "title",
    "imageAlt": "image alt"
  }
}
FieldTypeDescription
linkstringDestination URL
titlestringPin title
imageAltstringAlt text for the pin image

OpenAPI definition

{
  "openapi": "3.0.2",
  "info": {
    "title": "Simplified AI Services",
    "version": "1.1.0",
    "description": "Simplified AI service tools"
  },
  "paths": {
    "/social-media/create": {
      "post": {
        "description": "",
        "operationId": "get_social-mediacreate",
        "responses": {
          "200": {
            "description": "",
            "content": {
              "application/json": {
                "examples": {
                  "New Example": {
                    "summary": "New Example",
                    "value": ""
                  },
                  "New Example 1": {
                    "summary": "New Example 1",
                    "value": {
                      "ids": [
                        "6310"
                      ]
                    }
                  }
                }
              }
            }
          }
        },
        "parameters": [],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "properties": {
                  "action": {
                    "type": "string",
                    "description": "Action type, e.g. schedule, add_to_queue, draft"
                  },
                  "account_ids": {
                    "type": "array",
                    "description": "Array of account IDs to publish to",
                    "items": {
                      "type": "integer"
                    }
                  },
                  "message": {
                    "type": "string",
                    "description": "The text content of the post"
                  },
                  "date": {
                    "type": "string",
                    "description": "Scheduled date and time in format YYYY-MM-DD HH:MM (24h)"
                  },
                  "media": {
                    "type": "array",
                    "description": "Array of media URLs or Asset Ids (images, videos, etc.)",
                    "items": {
                      "type": "string"
                    }
                  },
                  "comments": {
                    "type": "array",
                    "description": "Auto-comments published to the post after it goes live. Processed in array order.",
                    "items": {
                      "type": "object",
                      "properties": {
                        "message": {
                          "type": "string",
                          "description": "The comment text."
                        },
                        "delay": {
                          "type": "integer",
                          "description": "Seconds to wait after the post is published before posting this comment."
                        }
                      }
                    }
                  },
                  "additional": {
                    "type": "object",
                    "description": "Platform-specific options (e.g., TikTok settings)",
                    "properties": {
                      "google": {
                        "type": "object",
                        "properties": {}
                      },
                      "tiktok": {
                        "type": "object",
                        "properties": {}
                      },
                      "threads": {
                        "type": "object",
                        "properties": {}
                      },
                      "youtube": {
                        "type": "object",
                        "properties": {}
                      },
                      "facebook": {
                        "type": "object",
                        "properties": {}
                      },
                      "linkedin": {
                        "type": "object",
                        "properties": {}
                      },
                      "instagram": {
                        "type": "object",
                        "properties": {}
                      },
                      "pinterest": {
                        "type": "object",
                        "properties": {}
                      },
                      "tiktokBusiness": {
                        "type": "object",
                        "properties": {}
                      }
                    }
                  }
                },
                "type": "object",
                "required": [
                  "action",
                  "account_ids"
                ]
              }
            }
          }
        }
      }
    }
  },
  "components": {
    "securitySchemes": {
      "Api-Key": {
        "type": "apiKey",
        "description": "Prefix the value with \"Api-Key\" like Api-Key <api-token>",
        "name": "Authorization",
        "in": "header"
      }
    }
  },
  "servers": [
    {
      "url": "https://api.simplified.com/api/v1/service",
      "description": "Production server"
    }
  ],
  "security": [
    {
      "Api-Key": []
    }
  ],
  "x-readme": {
    "explorer-enabled": true,
    "proxy-enabled": true
  }
}
Body Params
string
required

Action type, e.g. schedule, add_to_queue, draft

account_ids
array of integers
required

Array of account IDs to publish to

account_ids*
string

The text content of the post

string

Scheduled date and time in format YYYY-MM-DD HH:MM (24h)

media
array of strings

Array of media URLs or Asset Ids (images, videos, etc.)

media
comments
array of objects

Auto-comments published to the post after it goes live. Processed in array order. Omit (or send an empty array) for no auto-comments.

comments
Response

Language
Credentials
Header
LoadingLoading…
Response
Click Try It! to start a request and see the response here! Or choose an example:
application/json