Skip to main content
POST
/
socials
/
posts
/
{id}
/
comments
Reply to a post or comment
curl --request POST \
  --url https://api.crevio.co/v1/socials/posts/{id}/comments \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "account_id": "<string>",
  "message": "<string>",
  "comment_id": "<string>",
  "parent_cid": "<string>",
  "root_uri": "<string>",
  "root_cid": "<string>"
}
'
{}

Documentation Index

Fetch the complete documentation index at: https://crevio.co/docs/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

API key in the format: Bearer {api_token}

Path Parameters

id
string
required

Post ID (prefix_id)

Body

application/json
account_id
string
required

Connected account to reply as (sacct_ prefix id).

message
string
required
comment_id
string

Reply to this comment instead of the post.

parent_cid
string

Bluesky only: parent content id.

root_uri
string

Bluesky only: root post URI.

root_cid
string

Bluesky only: root post CID.

Response

Reply created

The response is of type object.