Overview
Write Actions: Act on behalf of an authenticated account: like, retweet, bookmark, and follow, each with its undo. Billed at $0.0008 per call, the same as a standard read.
Act on behalf of an authenticated account: like, retweet, bookmark, and follow, each with its undo. Billed at $0.0008 per call, the same as a standard read.
This category has 11 endpoints. Each is a pay-per-call REST endpoint with bearer auth, JSON in and out.
| Method | Path | Cost | Description |
|---|---|---|---|
POST | /media/upload | $0.0008 | Upload an image and get a media_id to attach to a tweet. |
POST | /tweet/favorite | $0.0008 | Like (favorite) a tweet on behalf of an authenticated account. |
POST | /tweet/unfavorite | $0.0008 | Remove a like (unfavorite) from a tweet. |
POST | /tweet/retweet | $0.0008 | Retweet a tweet on behalf of an authenticated account. |
POST | /tweet/unretweet | $0.0008 | Remove a retweet from a tweet. |
POST | /tweet/bookmark | $0.0008 | Add a tweet to the authenticated account's bookmarks. |
POST | /tweet/unbookmark | $0.0008 | Remove a tweet from the authenticated account's bookmarks. |
POST | /user/follow | $0.0008 | Follow a user on behalf of an authenticated account. |
POST | /user/unfollow | $0.0008 | Unfollow a user on behalf of an authenticated account. |
POST | /tweet/create | $0.0016 | Post a tweet as your registered account: text, media, reply, or quote. |
POST | /tweet/delete | $0.0008 | Delete one of your registered account's tweets by ID or status URL. |
Upload Media
Upload an image and get a media_id to attach to a tweet.
Like Tweet
Like (favorite) a tweet on behalf of an authenticated account.
Unlike Tweet
Remove a like (unfavorite) from a tweet.
Retweet
Retweet a tweet on behalf of an authenticated account.
Undo Retweet
Remove a retweet from a tweet.
Bookmark Tweet
Add a tweet to the authenticated account's bookmarks.
Remove Bookmark
Remove a tweet from the authenticated account's bookmarks.
Follow User
Follow a user on behalf of an authenticated account.
Unfollow User
Unfollow a user on behalf of an authenticated account.
Create Tweet
Post a tweet as your registered account: text, media, reply, or quote.
Delete Tweet
Delete one of your registered account's tweets by ID or status URL.
List Members GET
Fetch the members of a public List by its numeric ID, cursor-paginated. Returns full user objects for every account in the List. Cost: $0.0008 per call.
Like Tweet POSTNew
Like a tweet as the authenticated account. Requires a logged-in session for the acting account. Billed at $0.0008 per call, the same as a standard read. Cost: $0.0008 per call.