List posts with pagination and filters
Retrieve a paginated list of all your scheduled, draft, published, and failed posts.
Pagination behavior: The page and limit parameters are silently clamped to valid ranges rather than returning errors. page is clamped to a minimum of 1, and limit is clamped to 1-100.
Platform filtering: The platform filter uses case-insensitive prefix matching.
Query parameters
Page number (1-indexed). Values < 1 are silently clamped to 1.
Items per page. Values are silently clamped to range 1-100.
Filter by post status
Filter by platform (case-insensitive prefix matching)
Field to sort by
Sort order
Filter posts scheduled after this ISO 8601 date
Filter posts scheduled before this ISO 8601 date
Headers
Managed user ID (workspace only)
Response
Paginated list of posts
Example response
{
"success": true,
"posts": [
{
"postGroupId": "507f1f77bcf86cd799439011",
"content": "Excited to share our new product launch!"
}
],
"pagination": {
"page": 1,
"limit": 20,
"totalItems": 47,
"totalPages": 3,
"hasNextPage": true
}
}Changes
No recorded changes to this endpoint across all 1 revision of this API.