Skip to main content
GET
/
social_accounts
/
{id}
/
posts
List Social Account Posts
curl --request GET \
  --url https://{defaultHost}/social_accounts/{id}/posts \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "<string>",
      "media_url": "<string>",
      "thumbnail_url": "<string>",
      "call_to_action": "learn_more",
      "destination_url": "<string>"
    }
  ],
  "page_info": {
    "has_next_page": true,
    "end_cursor": "<string>"
  }
}

Authorizations

Authorization
string
header
required

An account API key, account scoped JWT, app API key, or user OAuth token.

Headers

Api-Version-Date
string<date>

Pins the request to a dated API version. When omitted, the request uses the original (2025-01-01) request/response shapes, so existing unversioned callers are never broken. Generated SDKs always send the latest version they were built against. An unrecognized value is rejected with a 400. The schemas documented here always describe the latest version.

Example:

"2026-06-20"

Path Parameters

id
string
required

The social account (a sacc_ identifier) whose posts to list.

Query Parameters

account_id
string
required

The Account (a biz_ identifier) the social account is connected to.

post_id
string

Return only the single post with this platform id, instead of the full list.

first
integer
default:25

The number of posts to return.

Required range: x <= 100
after
string

Cursor to fetch the page after (from page_info.end_cursor).

Response

single post returned when post_id is given

data
object[]
required
page_info
object
required