twitter engagement
Remove bookmark
Remove a bookmark from a tweet.
AuthorizationBearer <token>
API key authentication - use your Zernio API key as a Bearer token
In: header
Query Parameters
accountIdstring
tweetIdstring
The ID of the tweet to unbookmark
Response Body
application/json
application/json
import Zernio from '@zernio/node';const zernio = new Zernio({ apiKey: process.env.ZERNIO_API_KEY });const { data } = await zernio.twitterengagement.removeBookmark({ query: { accountId: 'account_abc123', tweetId: 'tweet_abc123', },});console.log(data);{
"status": "success",
"tweetId": "string",
"bookmarked": false,
"platform": "twitter"
}Empty
{
"error": "Unauthorized"
}Empty
Follow a user POST
Follow a user on X/Twitter. Requires the follows.write OAuth scope. For protected accounts, a follow request is sent instead (pending_follow will be true).
Retweet a post POST
Retweet (repost) a tweet by ID. Rate limit: 50 requests per 15-min window. Shares the 300/3hr creation limit with tweet creation.