List posts
Returns a cursor-paginated list of the account’s posts — content published to the creator’s Kit site and/or sent by email — with each post’s status (e.g. draft, scheduled, published), slug, public_url, is_paid flag, and timestamps for publishing and sending.
Post bodies are omitted by default; set include_content=true to embed the content HTML on each post (this significantly increases response size and latency for large collections — prefer Get a post for a single body). A post that was also sent as a broadcast shares its publication_id with the matching broadcast from List broadcasts.
Authorizations
Authenticate API requests via an API Key
Query Parameters
To fetch next page of results, use ?after=<end_cursor>
To fetch previous page of results, use ?before=<start_cursor>
To include the content field on each post in the response, use true. Omitted by default because it significantly increases response size and latency for large collections.
Set to true to include the total_count in the response. This option can cause slow responses; if paging through results, request it only on the first page and reuse the value for subsequent pages.
Number of results per page. Default 500, maximum 1000.