1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
#![warn(clippy::all, clippy::pedantic, clippy::nursery, clippy::cargo)]

use map_macro::hash_map;
use reqwest::ClientBuilder;
use serde::de::DeserializeOwned;
use serde_json::{json, Value};
use types::{
	internal::{LikersResponse, ProfileResponse, Response, ThreadResponse, ThreadsResponse},
	PostResponse, Profile, ProfileDetail, Thread,
};

pub mod types;

/// Reverse engineered API client for Instagram's Threads app.
pub struct Threads {
	client: reqwest::Client,
}

impl Threads {
	/// Create a new instance of the API.
	#[must_use]
	#[allow(clippy::missing_panics_doc)]
	pub fn new() -> Self {
		let client = ClientBuilder::new()
			.user_agent("threads-api")
			.build()
			.unwrap();

		Self { client }
	}

	/// Get a user's profile.
	///
	/// # Arguments
	///
	/// * `user_id` - The user's ID.
	///
	/// # Errors
	///
	/// Returns an error if the API request fails.
	pub async fn profile(&self, user_id: &str) -> Result<Profile, Error> {
		let response = self
			.get::<Response<ProfileResponse>>("23996318473300828", json!({ "userID": user_id }))
			.await?;

		Ok(response.data.user_data.user)
	}

	/// Get a list of a user's posts.
	///
	/// # Arguments
	///
	/// * `user_id` - The user's ID.
	///
	/// # Errors
	///
	/// Returns an error if the API request fails.
	pub async fn posts(&self, user_id: &str) -> Result<Vec<Thread>, Error> {
		let response = self
			.get::<Response<ThreadsResponse>>("6232751443445612", json!({ "userID": user_id }))
			.await?;

		Ok(response
			.data
			.media_data
			.threads
			.into_iter()
			.map(Into::into)
			.collect())
	}

	/// Get a list of a user's replies.
	///
	/// # Arguments
	///
	/// * `user_id` - The user's ID.
	///
	/// # Errors
	///
	/// Returns an error if the API request fails.
	pub async fn replies(&self, user_id: &str) -> Result<Vec<Thread>, Error> {
		let response = self
			.get::<Response<ThreadsResponse>>("6307072669391286", json!({ "userID": user_id }))
			.await?;

		Ok(response
			.data
			.media_data
			.threads
			.into_iter()
			.map(Into::into)
			.collect())
	}

	/// Get a post's data.
	///
	/// # Arguments
	///
	/// * `post_id` - The post's ID.
	///
	/// # Errors
	///
	/// Returns an error if the API request fails.
	pub async fn post(&self, post_id: &str) -> Result<PostResponse, Error> {
		let response = self
			.get::<Response<Response<ThreadResponse>>>(
				"5587632691339264",
				json!({ "postID": post_id }),
			)
			.await?;

		Ok(PostResponse {
			post: response.data.data.containing_thread.into(),
			replies: response
				.data
				.data
				.reply_threads
				.into_iter()
				.map(Into::into)
				.collect(),
		})
	}

	/// Get a list of users who liked a post.
	///
	/// # Arguments
	///
	/// * `post_id` - The post's ID.
	///
	/// # Errors
	///
	/// Returns an error if the API request fails.
	pub async fn likes(&self, post_id: &str) -> Result<Vec<ProfileDetail>, Error> {
		let response = self
			.get::<Response<LikersResponse>>("9360915773983802", json!({ "mediaID": post_id }))
			.await?;

		Ok(response.data.likers.users)
	}

	async fn get<T: DeserializeOwned>(&self, doc_id: &str, variables: Value) -> Result<T, Error> {
		let response = self
			.client
			.post("https://www.threads.net/api/graphql")
			.header("x-ig-app-id", "238260118697367")
			.form(&hash_map! {
				"doc_id" => doc_id,
				"variables" => &variables.to_string(),
			})
			.send()
			.await?
			.error_for_status()?;

		Ok(response.json::<T>().await?)
	}
}

impl Default for Threads {
	fn default() -> Self {
		Self::new()
	}
}

#[derive(Debug, thiserror::Error)]
pub enum Error {
	#[error("{0}")]
	Reqwest(#[from] reqwest::Error),

	#[error("{0}")]
	Serde(#[from] serde_json::Error),
}

#[cfg(test)]
mod tests {
	use super::*;

	#[tokio::test(flavor = "multi_thread")]
	async fn can_get_zuck_profile() {
		let threads = Threads::default();
		let profile = threads.profile("314216").await.unwrap();

		assert_eq!(profile.username, "zuck");
		assert_eq!(profile.full_name, "Mark Zuckerberg");
	}

	#[tokio::test(flavor = "multi_thread")]
	async fn can_get_zuck_posts() {
		let threads = Threads::default();
		let posts = threads.posts("314216").await.unwrap();

		let first_thread = posts.last().unwrap();

		assert_eq!(first_thread.id, "3138977881796614961");
		assert_eq!(
			first_thread.items[0].text,
			"Let's do this. Welcome to Threads. 🔥"
		);
	}

	#[tokio::test(flavor = "multi_thread")]
	async fn can_get_zuck_replies() {
		let threads = Threads::default();
		let posts = threads.replies("314216").await.unwrap();

		let first_reply = posts.last().unwrap();

		assert_eq!(
			first_reply.items[1].text,
			"We're only in the opening moments of the first round here..."
		);
	}

	#[tokio::test(flavor = "multi_thread")]
	async fn can_get_post_data() {
		let threads = Threads::default();
		let thread = threads.post("3138977881796614961").await.unwrap();

		assert_eq!(thread.post.id, "3138977881796614961");
		assert_eq!(
			thread.post.items[0].text,
			"Let's do this. Welcome to Threads. 🔥"
		);
	}

	#[tokio::test(flavor = "multi_thread")]
	async fn can_get_post_likes() {
		let threads = Threads::default();
		let likers = threads.likes("3138977881796614961").await.unwrap();

		assert!(!likers.is_empty());
	}
}