Posts

Get post details and status

Retrieve the details, platform statuses, and posted IDs for a post group.

get/get-post/{postGroupId}

Path parameters

postGroupIdstring required

Headers

x-publora-user-idstring

Response

Post details

successboolean
postGroupIdstring
status'draft' | 'scheduled' | 'published' | 'failed' | 'partially_published'

Post-group status. Always present.

scheduledTimestring date-time nullable

The effective scheduled time stored for this post group. Always present; null for drafts and for groups that were never given a time.

platformSettingsobject

Per-platform settings currently stored on this post group, keyed by platform. Always present; {} when none are set. Mirrors the platformSettings accepted by /create-post and /update-post.

platformsstring[]

Platform connection IDs targeted by this post group (format: platform-platformId). Always present; [] when none.

Example response

{
  "success": true,
  "scheduledTime": "2026-03-01T14:00:00.000Z",
  "platformSettings": {
    "youtube": {
      "privacy": "public",
      "madeForKids": false
    }
  },
  "platforms": [
    "twitter-123456789",
    "linkedin-ABC123"
  ],
  "posts": [
    {
      "platform": "twitter",
      "platformId": "123456789",
      "content": "Hello from Publora API!",
      "status": "published",
      "postedId": "1234567890123456789",
      "permalink": "https://x.com/publora/status/1234567890123456789"
    }
  ]
}

Changes