1.6.3 โ€ข Published 8 months ago

@montoulieu/threads-api v1.6.3

Weekly downloads
-
License
MIT
Repository
github
Last release
8 months ago

Threads API

NPM MIT License Prettier Code Formatting

Unofficial, Reverse-Engineered Node.js/TypeScript client for Meta's Threads.

threads-api in Action

โœจ The App Registry is officially live! We invite you to explore it on our website at threads.junho.io. Modify threads-web-ui/data/apps.ts to add your projects!

๐Ÿš€ Usage (Read)

import { ThreadsAPI } from 'threads-api';

// or in Deno ๐Ÿฆ–:
// import ThreadsAPI from "npm:threads-api";

const main = async () => {
  const threadsAPI = new ThreadsAPI();

  const username = '_junhoyeo';

  // ๐Ÿ‘ค Details for a specific user
  const userID = await threadsAPI.getUserIDfromUsername(username);
  if (!userID) {
    return;
  }
  const user = await threadsAPI.getUserProfile(userID);
  console.log(JSON.stringify(user));
  const posts = await threadsAPI.getUserProfileThreads(userID);
  console.log(JSON.stringify(posts));
  const replies = await threadsAPI.getUserProfileReplies(userID);
  console.log(JSON.stringify(replies));

  // ๐Ÿ“– Details for a specific thread
  const postID = threadsAPI.getPostIDfromURL(
    'https://www.threads.net/t/CuX_UYABrr7/?igshid=MzRlODBiNWFlZA==',
  );
  // or use `threadsAPI.getPostIDfromThreadID('CuX_UYABrr7')`
  if (!postID) {
    return;
  }
  const post = await threadsAPI.getThreads(postID);
  console.log(JSON.stringify(post.containing_thread));
  console.log(JSON.stringify(post.reply_threads));

  const likers = await threadsAPI.getThreadLikers(postID);
  console.log(JSON.stringify(likers));
};
main();

Read: Private(Auth Required)

๐Ÿ’ก Get User Profile (from v1.6.2)
  • getUserProfile but with auth
const userID = '5438123050';
const { user } = await threadsAPI.getUserProfileLoggedIn();
console.log(JSON.stringify(user));
๐Ÿ’ก Get Timeline
const { items: threads, next_max_id: cursor } = await threadsAPI.getTimeline();
console.log(JSON.stringify(threads));
๐Ÿ’ก Get Threads/Replies from a User (with pagination)
const { threads, next_max_id: cursor } = await threadsAPI.getUserProfileThreadsLoggedIn(userID);
console.log(JSON.stringify(threads));
const { threads, next_max_id: cursor } = await threadsAPI.getUserProfileRepliesLoggedIn(userID);
console.log(JSON.stringify(threads));
๐Ÿ’ก Get Followers/Followings of a User (with Pagination)
const { users, next_max_id: cursor } = await threadsAPI.getUserFollowers(userID);
console.log(JSON.stringify(users));
const { users, next_max_id: cursor } = await threadsAPI.getUserFollowings(userID);
console.log(JSON.stringify(users));
๐Ÿ’ก Get Details(with Following Threads) for a specific Thread (from v1.6.2)
  • getThreads but with auth (this will return more data)
let data = await threadsAPI.getThreadsLoggedIn(postID);
console.log(JSON.stringify(data.containing_thread));
console.log(JSON.stringify(data.reply_threads));
console.log(JSON.stringify(data.subling_threads));

if (data.downwards_thread_will_continue) {
  const cursor = data.paging_tokens.downward;
  data = await threadsAPI.getThreadsLoggedIn(postID, cursor);
}
๐Ÿ”” Get Notifications (from v1.6.2)
let data = await threadsAPI.getNotifications(
  ThreadsAPI.NotificationFilter.MENTIONS, // {MENTIONS, REPLIES, VERIFIED}
);

if (!data.is_last_page) {
  const cursor = data.next_max_id;
  data = await threadsAPI.getNotifications(ThreadsAPI.NotificationFilter.MENTIONS, cursor);
}
๐Ÿ’Ž Get Recommended Users (from v1.6.2)
let data = await threadsAPI.getRecommendedUsers();
console.log(JSON.stringify(data.users)); // ThreadsUser[]

if (data.has_more) {
  const cursor = data.paging_token;
  data = await threadsAPI.getRecommendedUsers(cursor);
}
๐Ÿ” Search Users (from v1.6.2)
const query = 'zuck';
const count = 40; // default value is set to 30
const data = await threadsAPI.searchUsers(query, count);

console.log(JSON.stringify(data.num_results));
console.log(JSON.stringify(data.users)); // ThreadsUser[]

๐Ÿš€ Usage (Write)

Note From v1.4.0, you can also call login to update your token and userID(for current credentials). Or you can just use the methods below, and they'll take care of the authentication automatically (e.g. if it's the first time you're using those).

New API (from v1.2.0)

โœจ Text Threads
import { ThreadsAPI } from 'threads-api';

const main = async () => {
  const threadsAPI = new ThreadsAPI({
    username: '_junhoyeo', // Your username
    password: 'PASSWORD', // Your password
  });

  await threadsAPI.publish({
    text: '๐Ÿค– Hello World',
  });
};

main();

๐Ÿ’ก TIP: Use the url field in ThreadsAPIPublishOptions to render Link Attachments(link previews).

โœจ Reply Control (from v1.4.6)
await threadsAPI.publish({
  text: '๐Ÿค– Threads with Reply Control',
  replyControl: 'accounts_you_follow', // 'everyone' | 'accounts_you_follow' | 'mentioned_only'
});
โœจ Threads with Link Attachment
await threadsAPI.publish({
  text: '๐Ÿค– Threads with Link Attachment',
  attachment: {
    url: 'https://github.com/junhoyeo/threads-api',
  },
});
โœจ Threads with Image
await threadsAPI.publish({
  text: '๐Ÿค– Threads with Image',
  attachment: {
    image: 'https://github.com/junhoyeo/threads-api/raw/main/.github/cover.jpg',
  },
});

ThreadsAPI.Image in attachment.image can also be type of ThreadsAPI.ExternalImage or ThreadsAPI.RawImage.

โœจ Threads with Sidecar (Multiple Images)

Info The term "sidecar" is what Threads uses to represent a group of images and/or videos that share the same post.

await threadsAPI.publish({
  text: '๐Ÿค– Threads with Sidecar',
  attachment: {
    sidecar: [
      'https://github.com/junhoyeo/threads-api/raw/main/.github/cover.jpg',
      'https://github.com/junhoyeo/threads-api/raw/main/.github/cover.jpg',
      { path: './zuck.jpg' }, // ThreadsAPI.ExternalImage
      { type: '.jpg', data: Buffer.from(โ€ฆ) }, // ThreadsAPI.RawImage
    ],
  },
});
โœจ Reply to Other Threads
const parentURL = 'https://www.threads.net/t/CugF-EjhQ3r';
const parentPostID = threadsAPI.getPostIDfromURL(parentURL); // or use `getPostIDfromThreadID`

await threadsAPI.publish({
  text: '๐Ÿค– Beep',
  link: 'https://github.com/junhoyeo/threads-api',
  parentPostID: parentPostID,
});
โœจ Quote a Thread (from v1.4.2)
const threadURL = 'https://www.threads.net/t/CuqbBI8h19H';
const postIDToQuote = threadsAPI.getPostIDfromURL(threadURL); // or use `getPostIDfromThreadID`

await threadsAPI.publish({
  text: '๐Ÿค– Quote a Thread',
  quotedPostID: postIDToQuote,
});
โœจ Like/Unlike a Thread (from v1.3.0)
const threadURL = 'https://www.threads.net/t/CugK35fh6u2';
const postIDToLike = threadsAPI.getPostIDfromURL(threadURL); // or use `getPostIDfromThreadID`

// ๐Ÿ’ก Uses current credentials
await threadsAPI.like(postIDToLike);
await threadsAPI.unlike(postIDToLike);
โœจ Follow/Unfollow a User (from v1.3.0)
const userIDToFollow = await threadsAPI.getUserIDfromUsername('junhoyeo');

// ๐Ÿ’ก Uses current credentials
await threadsAPI.follow(userIDToFollow);
await threadsAPI.unfollow(userIDToFollow);
โœจ Repost/Unrepost a Thread (from v1.4.2)
const threadURL = 'https://www.threads.net/t/CugK35fh6u2';
const postIDToRepost = threadsAPI.getPostIDfromURL(threadURL); // or use `getPostIDfromThreadID`

// ๐Ÿ’ก Uses current credentials
await threadsAPI.repost(postIDToRepost);
await threadsAPI.unrepost(postIDToRepost);
โœจ Delete a Post (from v1.3.1)
const postID = await threadsAPI.publish({
  text: '๐Ÿค– This message will self-destruct in 5 seconds.',
});

await new Promise((resolve) => setTimeout(resolve, 5_000));
await threadsAPI.delete(postID);
๐Ÿ”‡ Mute/Unmute a User/Post (from v1.6.2)
const userID = await threadsAPI.getUserIDfromUsername('zuck');
const threadURL = 'https://www.threads.net/t/CugK35fh6u2';
const postID = threadsAPI.getPostIDfromURL(threadURL); // or use `getPostIDfromThreadID`

// ๐Ÿ’ก Uses current credentials

// Mute User
await threadsAPI.mute({ userID });
await threadsAPI.unfollow({ userID });

// Mute a Post of User
await threadsAPI.mute({ userID, postID });
await threadsAPI.unfollow({ userID, postID });
๐Ÿ”‡ Block/Unblock a User (from v1.6.2)
const userID = await threadsAPI.getUserIDfromUsername('zuck');

// ๐Ÿ’ก Uses current credentials
await threadsAPI.block({ userID });
await threadsAPI.unblock({ userID });
๐Ÿ”” Set Notifications Seen (from v1.6.2)
// ๐Ÿ’ก Uses current credentials
await threadsAPI.setNotificationsSeen();
โœจ Threads with Image
await threadsAPI.publish({
  text: '๐Ÿค– Threads with Image',
  image: 'https://github.com/junhoyeo/threads-api/raw/main/.github/cover.jpg',
});
โœจ Threads with Link Attachment
await threadsAPI.publish({
  text: '๐Ÿค– Threads with Link Attachment',
  url: 'https://github.com/junhoyeo/threads-api',
});
import { ThreadsAPI } from 'threads-api';

const main = async () => {
  const threadsAPI = new ThreadsAPI({
    username: 'jamel.hammoud', // Your username
    password: 'PASSWORD', // Your password
  });

  await threadsAPI.publish('๐Ÿค– Hello World');
};

main();

You can also provide custom deviceID (Default is android-${(Math.random() * 1e24).toString(36)}).

const deviceID = `android-${(Math.random() * 1e24).toString(36)}`;

const threadsAPI = new ThreadsAPI({
  username: 'jamel.hammoud',
  password: 'PASSWORD',
  deviceID,
});

Installation

yarn add threads-api
# or with npm
npm install threads-api
# or with pnpm
pnpm install threads-api
// or in Deno ๐Ÿฆ–
import ThreadsAPI from 'npm:threads-api';

const threadsAPI = new ThreadsAPI.ThreadsAPI({});

Roadmap

  • โœ… Read public data
    • โœ… Fetch UserID(314216) via username(zuck)
    • โœ… Read timeline feed
    • โœ… Read User Profile Info
    • โœ… Read list of User Threads
      • โœ… With Pagination (If auth provided)
    • โœ… Read list of User Replies
      • โœ… With Pagination (If auth provided)
    • โœ… Fetch PostID(3140957200974444958) via ThreadID(CuW6-7KyXme) or PostURL(https://www.threads.net/t/CuW6-7KyXme)
    • โœ… Read Threads via PostID
    • โœ… Read Likers in Thread via PostID
    • โœ… Read User Followers
    • โœ… Read User Followings
  • โœ… Write data (i.e. write automated Threads)
    • โœ… Create new Thread with text
      • โœ… Make link previews to get shown
    • โœ… Create new Thread with a single image
    • โœ… Create new Thread with multiple images
    • โœ… Reply to existing Thread
    • โœ… Quote Thread
    • โœ… Delete Thread
  • โœ… Friendships
    • โœ… Follow User
    • โœ… Unfollow User
  • โœ… Interactions
    • โœ… Like Thread
    • โœ… Unlike Thread
  • ๐Ÿดโ€โ˜ ๏ธ Restructure the project as a monorepo
    • ๐Ÿดโ€โ˜  Add Demo App with Next.js
    • ๐Ÿดโ€โ˜ ๏ธ Cool CLI App to run Threads in the Terminal

Projects made with threads-api

Add yours by just opening an pull request!

๐Ÿดโ€โ˜ ๏ธ react-threads: Embed Static Threads in your React/Next.js application.

NPM MIT License Prettier Code Formatting npm.io

Embed Static Threads in your React/Next.js application. UI components for Meta's Threads. Powered by junhoyeo/threads-api.

cover

Demo

Warning Vercel Deployment is currently sometimes unstable. ๐Ÿดโ€โ˜ ๏ธ

cover

To use the threads-api command line interface, run the following command:

$ npx threads-api --help
Usage: threads-api [command] [options]

Options:
  -v, --version                                                                   output the current version
  -h, --help                                                                      display help for command

Commands:
  help                                                                            display help for command
  getUserIDfromUsername|userid|uid|id <username>                                  det user ID from username
  getUserProfile|userprofile|uprof|up <username> <userId> [stringify]             get user profile
  getUserProfileThreads|uthreads|ut <username> <userId> [stringify]               get user profile threads
  getUserProfileReplies|userreplies|ureplies|ur <username> <userId> [stringify]   get user profile replies
  getPostIDfromURL|postid|pid|p <postURL>                                         get post ID from URL
  getThreads|threads|t <postId> [stringify]                                       get threads
  getThreadLikers|threadlikers|likers|l <postId> [stringify]                      get thread likers

๐Ÿ‘ค threads-card: Share your Threads profile easily

๐Ÿ‘ค Strings: Web-Frontend for Threads

Screenshot (84)

๐Ÿ‘ค threads-projects: Unleashing the power of Meta's Threads.net platform with insightful bots and efficient workflows

๐Ÿงต thread-count: Custom status badges for Meta's Threads.net follower counts

parameterdemo
Default (_junhoyeo's account)
Custom Text and Colors
Scale Badge Sizehttps://www.threads.net/@zuck

๐Ÿค– thread-year-prog-bot: Bot weaving the fabric of time

License

If you find this project intriguing, please consider starring it(โญ) or following me on GitHub (I wouldn't say Threads). I code 24/7 and ship mind-breaking things on a regular basis, so your support definitely won't be in vain.