Endpoint
Overview
Retrieve a list of posts (videos and slideshows) with optional filtering by account IDs and date range. Use this endpoint to monitor and track all posts across your accounts. Supports keyset pagination vialimit/cursor — pass limit to page through results
newest-first, using each response’s nextCursor to fetch the next page.
Request Body
Array of account IDs to filter posts by. Omit to get all posts.
Array of specific post IDs to retrieve. Use this to fetch specific posts by their IDs.
Start date in ISO 8601 format (e.g.,
2024-01-01T00:00:00Z)End date in ISO 8601 format (e.g.,
2024-12-31T23:59:59Z)Max rows to return. Omit to fetch all matching posts (no pagination).
Opaque cursor from a previous response’s
nextCursor, to fetch the next page. Results are
ordered newest-first.Response
Array of post objects
Present when
limit was passed. Pass back as cursor to fetch the next page; null means
there are no more pages.