Posts
The Posts API lets you list, filter, and inspect social media posts across your connected accounts. Build dashboards, content calendars, or analytics by combining powerful query parameters.
Requirements
Authentication: Bearer API token
Scope:
posts
Headers:
Authorization: Bearer-API YOUR_API_KEY
Publer-Workspace-Id: YOUR_WORKSPACE_ID
Endpoint
List Posts
Retrieve posts with optional filters and pagination.
Query Parameters
state
string
No
Filter by a single post state (see State Values below)
state[]
array
No
Filter by multiple post states
from
string
Yes if to
used
ISO date or datetime; include posts on/after this timestamp
to
string
Yes if from
used
ISO date or datetime; include posts on/before this timestamp
page
integer
No
Page number (default: 0)
account_ids[]
array
No
List of account IDs to filter by
query
string
No
Full-text search keyword in post content
postType
string
No
Filter by post type (see Type Values below)
member_id
string
No
Filter posts created by a specific workspace member
State Values
Value
Description
all
All posts regardless of state
scheduled
All scheduled posts
scheduled_approved
Scheduled posts that have been approved
scheduled_pending
Scheduled posts pending approval
scheduled_declined
Scheduled posts that were declined
scheduled_reauth
Scheduled posts requiring account reauthorization
scheduled_locked
Scheduled posts that are locked
published
All published posts
published_posted
Posts that were successfully published
published_deleted
Published posts that were deleted
published_hidden
Published posts that were hidden
draft
All draft posts
draft_dated
Draft posts with a scheduled date
draft_undated
Draft posts without a scheduled date
draft_private
Private draft posts
draft_public
Public draft posts
failed
Posts that failed to publish
recycling
All recycling posts
recycling_active
Active recycling posts
recycling_paused
Paused recycling posts
recycling_expired
Expired recycling posts
recycling_failed
Failed recycling posts
recycling_pending
Recycling posts pending approval
recycling_declined
Recycling posts that were declined
recycling_reauth
Recycling posts requiring account reauthorization
recycling_locked
Recycling posts that are locked
recurring
Recurring posts
Type Values
Value
Description
status
Text-only posts
link
Posts with links
photo
Photo posts
gif
GIF posts
video
Video posts
reel
Instagram or Facebook reels
story
Instagram or Facebook stories
short
YouTube shorts
poll
Poll posts
document
Document posts
carousel
Multi-image carousel posts
article
Article/blog posts
Retrieves a list of posts based on the specified filters.
Filter by post state
Available options:
all
, scheduled
, scheduled_approved
, scheduled_pending
, scheduled_declined
, scheduled_reauth
, scheduled_locked
, published
, published_posted
, published_deleted
, published_hidden
, draft
, draft_dated
, draft_undated
, draft_private
, draft_public
, failed
, recycling
, recycling_active
, recycling_paused
, recycling_expired
, recycling_failed
, recycling_pending
, recycling_declined
, recycling_reauth
, recycling_locked
, recurring
Filter posts scheduled/published after this date
- Example: 2025-05-15
Required if to
is provided
Filter posts scheduled/published before this date
- Example: 2025-05-15
Required if from
is provided
Page number for pagination
Filter posts by multiple account IDs
Search query to filter posts by content
Filter by post type
Available options:
status
, link
, photo
, gif
, video
, reel
, story
, short
, poll
, document
, carousel
, article
Filter posts by team member ID
ID of the workspace to retrieve posts from
Filtering Examples
Photo posts scheduled next month containing “launch”
GET /posts?state=scheduled&postType=photo&from=2025-06-01&to=2025-06-30&query=launch
All failed posts across accounts
GET /posts?state=failed&account_ids[]=63c675b54e299e9cf2b667ea&account_ids[]=64d786c54e299e9cf2b667fb
Drafts by a workspace member
GET /posts?state=draft&member_id=5b1ec026db27977424e8599e
Related Resources
Accounts API - Manage social media accounts
Media API - Upload and manage media for posts
Create Posts - Post creation endpoints
Last updated
Was this helpful?