Releases: justoneapi/justoneapi-python
Releases · justoneapi/justoneapi-python
Version 1.11.0
Added several new Taobao APIs.
Version 1.10.0
🚀 Release Notes
✨ New Features
- Unified Search API
- Added a new API endpoint:
/api/search/v1
- Allows developers to search across multiple platforms with a single request
- Supported platforms include: Douyin, Xiaohongshu, Kuaishou, Weibo, Zhihu, Bilibili, WeChat, News
- Suitable for content discovery, trend monitoring, market research, and public opinion analysis
- Added a new API endpoint:
Version 1.9.0
Added several new Taobao APIs.
Version 1.8.0
Added several new Xiaohongshu APIs.
Version 1.7.0
Added several new Taobao APIs.
Version 1.6.0
Added several new Taobao APIs.
Version 1.5.0
Added several new Xiaohongshu APIs.
Version 1.4.0
🚀 Xiaohongshu Note Detail API Update
- Added new endpoints:
- /api/xiaohongshu/get-note-detail/v1
- /api/xiaohongshu/get-note-detail/v4
Version 1.3.1
Adjusted the parameters for the Xiaohongshu (Rednote) comment API.
Version 1.3.0
✨ v1.3.0
🚀 New Features
-
Added environment switching support:
You can now specifyenv="cn"
orenv="global"
when initializing the client to choose between Mainland China and Global environments.# Default is Mainland China (env="cn") client = JustOneAPIClient(token="your_token") # For Global users (outside Mainland China) client = JustOneAPIClient(token="your_token", env="global")
🌐 Why it matters
This feature helps improve request performance based on your geographical location.
If you're outside Mainland China and experiencing slow responses, switching to env="global"
can significantly reduce latency.