Unofficial, Reverse-Engineered Rust client for Instagram's Threads.
use threads_api::Threads;
let client = Threads::new();
let user = client.profile(user_id).await?;
let posts = client.posts(user_id).await?;
let posts = client.replies(user_id).await?;
- Get user profile
- Get user posts
- Get user replies
- Get post replies
- Get post likes
- Authentication
- Post a thread
- Post a reply
- Update profile details
- Follow a user
- Unfollow a user
This project is open-sourced under the MIT license. See the License file for more information.