Agent-readable docs index: /llms.txt. Full docs in one file: /llms-full.txt. Download /docs.zip to grep all markdown files locally.
/api/v1/inbox/replyPOST
Publishes a reply in a post's comment section. Pass parentCommentId (an imported comment ID) to reply to a specific comment, or omit it to comment on the post itself.
Authorization
apiKey *Bearer <token>
Akarso API key from the dashboard. Token in: header
Request Bodyapplication/jsonrequired
postId *string
Post ID the comment thread belongs to
Min length: 1
platform *"TIKTOK" | "YOUTUBE" | "INSTAGRAM" | "FACEBOOK" | "THREADS" | "LINKEDIN" | "REDDIT" | "MASTODON" | "DISCORD" | "SLACK" | "BLUESKY"
Platform to reply on
text *string
Reply text
Min length: 1
parentCommentId?string
Imported comment ID to reply to. Omit to comment on the post itself.
Response
200
id *string
status?string
error?string | null
400 · Invalid request body, path, or query parameters
error *string
Human-readable error message
code?string
Machine-readable error code
message?string
Additional error details
401 · Missing or invalid API key
error *string
Human-readable error message
code?string
Machine-readable error code
message?string
Additional error details
404 · Resource not found
error *string
Human-readable error message
code?string
Machine-readable error code
message?string
Additional error details
502 · Upstream platform request failed
error *string
Human-readable error message
code?string
Machine-readable error code
message?string
Additional error details
Request example
curl -X POST "https://akarso.co/api/v1/inbox/reply" \ -H "Authorization: Bearer <token>" \ -H "Content-Type: application/json" \ -d '{ "postId": "string", "platform": "TIKTOK", "text": "string", "parentCommentId": "string" }'