1- # TwexAPI Kotlin SDK: Twitter API for search, followers, DMs & X automation
1+ # TwexAPI Kotlin SDK: Twitter API for search, followers, profiles & timelines
22
33Use the TwexAPI Kotlin SDK to search tweets, scrape Twitter followers, and read X profiles, timelines, replies, and threads.
4- Send DMs, search communities, fetch lists, articles, hashtags, cashtags, and global trending tweets with typed request objects.
5- Like, retweet, follow, and post through documented REST routes. It is a Twitter API alternative for Kotlin services and agents.
4+ Search communities, fetch lists, articles, hashtags, cashtags, and global trending tweets with typed request objects.
5+ It is a Twitter API alternative for Kotlin services and agents.
66
77[ REST API] ( https://docs.twexapi.io ) | [ Java SDK] ( https://github.com/twexapi-dev/x-api-scraper-java ) | [ TypeScript SDK] ( https://github.com/twexapi-dev/x-api-scraper-typescript ) | [ Python SDK] ( https://github.com/twexapi-dev/x-api-scraper-python ) | [ Ruby SDK] ( https://github.com/twexapi-dev/x-api-scraper-ruby ) | [ Dashboard] ( https://twexapi.io/dashboard )
88
@@ -25,10 +25,8 @@ Use the [Java SDK](https://github.com/twexapi-dev/x-api-scraper-java) for Java-f
2525| Scrape following accounts | ` POST /v3/twitter/users/following ` | ` sdk.users().following().list() ` |
2626| Read tweet replies | ` POST /twitter/tweets/{tweet_id}/replies/page ` | ` sdk.replies().page() ` |
2727| Read a tweet thread | ` POST /twitter/tweets/thread_by_id ` | ` sdk.tweets().threadById() ` |
28- | Send or read DMs | ` /v3/twitter/send-dm ` , ` /v3/twitter/dm-history ` | ` sdk.dm() ` |
2928| Search communities | ` POST /twitter/community/search ` | ` sdk.communities().search() ` |
3029| Get global trending tweets | ` GET /twitter/global-trending/tweets ` | ` sdk.trending().tweets() ` |
31- | Post or reply | ` POST /twitter/tweets/create ` | ` sdk.tweets().actions().create() ` |
3230
3331## Package & registry trust
3432
@@ -87,8 +85,6 @@ fun main() {
8785}
8886```
8987
90- Write actions (tweet, follow, like, DM send) also need a Twitter cookie or ` auth_token ` on the request. Pass them on the operation input.
91-
9288Keep API keys out of source code, URLs, and logs.
9389
9490## Use Coroutines
0 commit comments