Skip to main content

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 via limit/cursor — pass limit to page through results newest-first, using each response’s nextCursor to fetch the next page.

Request Body

string[]
Array of account IDs to filter posts by. Omit to get all posts.
string[]
Array of specific post IDs to retrieve. Use this to fetch specific posts by their IDs.
string
Start date in ISO 8601 format (e.g., 2024-01-01T00:00:00Z)
string
End date in ISO 8601 format (e.g., 2024-12-31T23:59:59Z)
number
Max rows to return. Omit to fetch all matching posts (no pagination).
string
Opaque cursor from a previous response’s nextCursor, to fetch the next page. Results are ordered newest-first.

Response

Post[]
Array of post objects
string | null
Present when limit was passed. Pass back as cursor to fetch the next page; null means there are no more pages.