Create a Post
Send a message to one or multiple social media accounts.
Endpoint
POST https://api.schedpilot.com/developers/v1/post
Headers
| Header | Value |
|---|---|
X-API-KEY | smm_your_secret_key |
Content-Type | application/json |
Body Parameters
| Parameter | Type | Description |
|---|---|---|
content | string | Required. The text of your post. |
accounts | array | Required. IDs of the accounts to post to. |
post_instant | boolean | Set to true to skip scheduling. |
date | string | Format: YYYY-MM-DD. |
time | string | Format: HH:mm. |
Example Request
{
"content": "Hello World! 🚀",
"accounts": [12, 15],
"post_instant": true
}