threads-api

Crates.iothreads-api
lib.rsthreads-api
version0.1.2
sourcesrc
created_at2023-07-06 17:32:56.381645
updated_at2023-07-07 02:09:46.879247
descriptionReverse engineered API client for Instagram's Threads app.
homepage
repositoryhttps://github.com/m1guelpf/threads-api
max_upload_size
id910141
size13,375
Miguel Piedrafita (m1guelpf)

documentation

README

Instagram Threads API

Crates.io Docs.rs MIT licensed

Unofficial, Reverse-Engineered Rust client for Instagram's Threads.

Usage

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?;

📌 Roadmap

  • 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

License

This project is open-sourced under the MIT license. See the License file for more information.

Commit count: 3

cargo fmt