List Social Posts
Social
List Social Posts
List social posts with cursor pagination.
GET
List Social Posts
Returns social posts for the API key’s organization, sorted by
created_at descending.
Use this endpoint for dashboards, sync jobs, and agents that need to page through posts. Use GET /social/post/{post_id} when you need the freshest status for one specific post.
Request
Query Parameters
| Field | Type | Required | Description |
|---|---|---|---|
limit | integer | No | Maximum posts to return. Defaults to 20; maximum is 100. |
cursor | string | No | Cursor returned by the previous response. |
status | string | No | Filter by post status. Supported values are scheduled, pending_approval, processing, posted, partial_failure, failed, and rejected. |
platform | string | No | Filter by platform: x, linkedin, instagram, facebook, tiktok, or youtube. |
social_connection_id | string (uuid) | No | Filter to posts that target one connected account. |
Filtered Request
Response
Pagination
- Results are sorted by
created_atdescending. next_cursoris opaque. Pass it back ascursorto get the next page.has_moreisfalseandnext_cursorisnullwhen there are no more posts.- List responses do not refresh destination status from the social platforms. Use
GET /social/post/{post_id}for a fresh read of one post.