/📘 API Reference/List Posts

List Posts

Retrieve your scheduled queue, filter by status or date range, and inspect per-platform delivery.

Endpoint

GET/posts

Query params

status, from, to, account_id, limit, cursor.

Example

curl "https://api.plansched.com/developers/v1/posts?status=scheduled&limit=20" \
  -H "Authorization: Bearer $PLANSCHED_KEY"

Response

{
  "data": [
    {
      "id": "post_abc123",
      "status": "scheduled",
      "text": "Big launch today 🚀",
      "scheduled_at": "2026-08-01T15:30:00Z",
      "account_ids": ["acc_1a2b3c"],
      "media_ids": ["med_9x8y7z"]
    }
  ],
  "next_cursor": null
}
Next
API Reference → Delete Post
Continue