latestOpenAPI 3.0.32026-08-23410223.0 KB

c93447ba6b9d

publishing

List scheduled posts

Fetches the current user's scheduled posts, ordered by scheduled time (ascending). Supports cursor-based pagination. Only returns posts scheduled in the future.

get/v2/schedules

Query parameters

limitinteger
cursorstring

Response

Default Response

countstring required
cursorstring

Example response

{
  "items": [
    {
      "draft": {
        "accountId": "1",
        "content": {
          "text": "My text",
          "mediaUrls": [
            "https://database.blotato.io/some-image-path.jpg"
          ],
          "platform": "twitter",
          "additionalPosts": [
            {
              "text": "My text",
              "mediaUrls": [
                "https://database.blotato.io/some-image-path.jpg"
              ]
            }
          ]
        },
        "target": {
          "targetType": "webhook",
          "url": "https://example.com/webhook"
        }
      }
    }
  ]
}