Comments

Endpoints related to reading and posting comments on social posts.

List comments

get

Lists the current user's comments across their connected social accounts, ordered by creation time (most recent first). Supports cursor-based pagination and filtering by platform, account, and published post.

Authorizations
blotato-api-keystringRequired
Query parameters
limitinteger ยท min: 1 ยท max: 250Optional

Maximum number of comments to return. Defaults to 50.

Default: 50
cursorstringOptional

Opaque cursor returned by a previous call. Pass it to fetch the next page.

accountIdstringOptional

Filter to comments belonging to a single connected account.

postIdstringOptional

Filter to comments on a single Blotato-published post.

Responses
200

Default Response

application/json
cursorstringOptional

Cursor for the next page. Absent when there are no more comments.

get
/v2/comments

Post a comment

post

Posts a comment on a published post.

Authorizations
blotato-api-keystringRequired
Body
postIdstringRequired

Blotato id of the published post to comment on.

textstring ยท min: 1 ยท max: 10000Required

Plain-text comment body.

Responses
post
/v2/comments

Last updated