Threads-api

Latest version: v1.2.0

Safety actively analyzes 693883 Python packages for vulnerabilities to keep your Python projects secure.

Scan your dependencies

Page 2 of 7

1.4.5

Threads API - Unofficial, Reverse-Engineered Node.js/TypeScript client for Meta's [Threads](https://threads.net).

What's Changed
* [docs] Fix typo in README.md, Update roadmap by alllz in https://github.com/junhoyeo/threads-api/pull/171
* [api] Move `dotenv` to dependencies by junhoyeo in https://github.com/junhoyeo/threads-api/pull/178

New Contributors
* alllz made their first contribution in https://github.com/junhoyeo/threads-api/pull/171

**Full Changelog**: https://github.com/junhoyeo/threads-api/compare/v1.4.4...v1.4.5

1.4.4

Threads API - Unofficial, Reverse-Engineered Node.js/TypeScript client for Meta's [Threads](https://threads.net).

Summary
- 💡 Thanks to wack-overflow, we can now **✨ query user followers and followings!**
- 🛠️ Post ID resolvers had been rewritten, thanks to drunkleen's implementation in https://github.com/junhoyeo/threads-py/pull/27.
- **Now we don't send requests to the Threads Web App each time we need to resolve the Post ID** — which also means the method is now static/synchronous.
- 🛠️ Fixed small bugs, Bump documentation, .etc.

What's Changed
* [api] user follow(ing/ers) w pagination + query by wack-overflow in https://github.com/junhoyeo/threads-api/pull/158
* Updated README.md to fix issue with details block by AayushGithub in https://github.com/junhoyeo/threads-api/pull/163
* [api] Statically get Post ID with base64 encoding by junhoyeo in https://github.com/junhoyeo/threads-api/pull/166
* [api] Fix `deviceID` check in constructor by junhoyeo in https://github.com/junhoyeo/threads-api/pull/168


**Full Changelog**: https://github.com/junhoyeo/threads-api/compare/v1.4.2...v1.4.3

1.4.2

Threads API - Unofficial, Reverse-Engineered Node.js/TypeScript client for Meta's [Threads](https://threads.net).

Now we have...
- ✨ **Queries for Timeline(Global)/Feed(User Threads/Replies)**
- ✨ **Added `quotedPostID` option to `publish` method to quote Threads**
- ✨ **Now you can create/remove reposts with `repost` and `unrepost`**

What's Changed
* Add `thread-year-prog-bot` to projects and format .imgbotconfig by SethuSenthil in https://github.com/junhoyeo/threads-api/pull/141
* User Feed Queries for Logged in Users - Pagination! by wack-overflow in https://github.com/junhoyeo/threads-api/pull/150
* 🔏 Add support for .env config out of the box by SethuSenthil in https://github.com/junhoyeo/threads-api/pull/151
* [api] Implement method to fetch timeline feed by junhoyeo in https://github.com/junhoyeo/threads-api/pull/152
* [api] Add tests, refactor interface, and fix bugs in error handling by junhoyeo in https://github.com/junhoyeo/threads-api/pull/153
* [api] Fix internal naming to match other convention (`Id` -> `ID`) by junhoyeo in https://github.com/junhoyeo/threads-api/pull/154
* [api] Implement repost/unrepost by junhoyeo in https://github.com/junhoyeo/threads-api/pull/156
* [api] Add `quotedPostID` option to `publish` method by junhoyeo in https://github.com/junhoyeo/threads-api/pull/159
* [docs] Update README.md by junhoyeo in https://github.com/junhoyeo/threads-api/pull/160


**Full Changelog**: https://github.com/junhoyeo/threads-api/compare/v1.4.1...v1.4.2

1.4.1

Threads API - Unofficial, Reverse-Engineered Node.js/TypeScript client for Meta's [Threads](https://threads.net).

Summary
- ✨ New option `maxRetries` — We can now try login retries up to `maxRetries` (default is `1`) on an exponential backoff.
- 🛠️ Few issues fixed and improvements made (header localization, wrong requirements check in `publish`, WebUI rewrite with App Dir)

What's Changed
* [Fix / Enhancement] Improve `accept-language` header handling by SethuSenthil in https://github.com/junhoyeo/threads-api/pull/130
* Do not require username and pass if token is provided by cedriking in https://github.com/junhoyeo/threads-api/pull/133
* Max retries by cedriking in https://github.com/junhoyeo/threads-api/pull/135
* Rebuilt Threads Web UI using the app router of NextJS. closes 107 by sudarshanmg in https://github.com/junhoyeo/threads-api/pull/116
* [web-ui] Make app dir to work as intended by junhoyeo in https://github.com/junhoyeo/threads-api/pull/136

New Contributors
* cedriking made their first contribution in https://github.com/junhoyeo/threads-api/pull/133

**Full Changelog**: https://github.com/junhoyeo/threads-api/compare/v1.4.0...v1.4.1

1.4.0

Threads API - Unofficial, Reverse-Engineered Node.js/TypeScript client for Meta's [Threads](https://threads.net).

Summary
- This release fix issues that was caused by the recent Threads' Auth Changes today.
- Special Thanks to francistogram, aldinp16, onesyah05, ishaanbedi, LilaRest,
vietduc030496, sudarshanmg, yekayee, Aerglonus, yssf-io and SethuSenthil, who helped me research & fix the issue. (Also thanks to dilame who built the [dilame/instagram-private-api](https://github.com/dilame/instagram-private-api)) 👍

What's Changed
* [api] Login with encrypted password by junhoyeo in https://github.com/junhoyeo/threads-api/pull/125
* [Chore] Updated Dynamic Data by SethuSenthil in https://github.com/junhoyeo/threads-api/pull/127
* [api] Fix length check in `_destructureFromUserIDQuerier` by junhoyeo in https://github.com/junhoyeo/threads-api/pull/128


**Full Changelog**: https://github.com/junhoyeo/threads-api/compare/v1.3.2...v1.4.0

1.3.2

Threads API - Unofficial, Reverse-Engineered Node.js/TypeScript client for Meta's [Threads](https://threads.net).

What's Changed
* Added Screenshots and new Thread Count project by AayushGithub in https://github.com/junhoyeo/threads-api/pull/105
* [api] added instagram as backup for getting userID by yssf-io in https://github.com/junhoyeo/threads-api/pull/106
* feat: use mrmime instead of mime-types by aleclarson in https://github.com/junhoyeo/threads-api/pull/109
* feat: allow inline image upload by aleclarson in https://github.com/junhoyeo/threads-api/pull/110
* ~~Refactoring code for improved readability and optimization by aminedjohar in https://github.com/junhoyeo/threads-api/pull/119~~
* FIX: NextJS version mismatch in the dependency tree by sudarshanmg in https://github.com/junhoyeo/threads-api/pull/112
* ~~Revert "Refactoring code for improved readability and optimization" by junhoyeo in https://github.com/junhoyeo/threads-api/pull/120~~
* [api] Refactor & update interface to not use `username` in query methods by junhoyeo in https://github.com/junhoyeo/threads-api/pull/121

New Contributors
* aleclarson made their first contribution in https://github.com/junhoyeo/threads-api/pull/109
* aminedjohar made their first contribution in https://github.com/junhoyeo/threads-api/pull/119
* sudarshanmg made their first contribution in https://github.com/junhoyeo/threads-api/pull/112

**Full Changelog**: https://github.com/junhoyeo/threads-api/compare/v1.3.1...v1.3.2

Page 2 of 7

© 2025 Safety CLI Cybersecurity Inc. All Rights Reserved.