Posteady
Posteady Docs
APIReposts

Repost an existing post

Repost (reshare) an existing post to the connected account's own feed. X = retweet, Threads = repost, LinkedIn = repost. One account reposts one post.

POST
/api/v1/reposts
AuthorizationBearer <token>

In: header

accountIdstring

Account that will repost (from GET /api/v1/accounts).

Formatuuid
postIdstring

Native platform post ID to repost (from GET /api/v1/posts).

Response Body

curl -X POST "https://www.posteady.com/api/v1/reposts" \
  -H "Content-Type: application/json" \
  -d '{
    "accountId": "3d07c219-0a88-45be-9cfc-91e9d095a1e9",
    "postId": "string"
  }'
{
  "success": true,
  "accountId": "string",
  "provider": "threads",
  "sourcePostId": "string",
  "repostId": "string",
  "permalink": "string"
}
Empty
Empty
Empty
Empty