List posts
Authentication
Bearer authentication of the form Bearer <token>, where token is your auth token.
Path Parameters
Query Parameters
Optionally filter the results by platform.web - Posts only published to web.email - Posts only published to email.both - Posts published to email and web.all - Does not restrict results by platform.
Optionally filter the results by the status of the post.draft - not been scheduled.confirmed - The post will be active after the scheduled_at.archived - The post is no longer active.all - Does not restrict results by status.
Optionally filter posts by their slugs. Adding a slug will return any post with that exact slug associated to it.
Example: Filtering for slugs: ["my-first-post","another-post"] will return results of posts that have either my-first-post or another-post as their slug.
Pagination returns the results in pages. Each page contains the number of results specified by the limit (default: 10).
If not specified, results 1-10 from page 1 will be returned.
The direction that the results are sorted in. Defaults to asc
asc - Ascending, sorts from smallest to largest.
desc - Descending, sorts from largest to smallest.