curl --request POST \
--url https://api.scrapeunblocker.com/social/threads-profile \
--header 'x-scrapeunblocker-key: <api-key>'import requests
url = "https://api.scrapeunblocker.com/social/threads-profile"
headers = {"x-scrapeunblocker-key": "<api-key>"}
response = requests.post(url, headers=headers)
print(response.text)const options = {method: 'POST', headers: {'x-scrapeunblocker-key': '<api-key>'}};
fetch('https://api.scrapeunblocker.com/social/threads-profile', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}Scrape a public Threads profile
Fetches a public Threads (Meta) profile for username and returns it as JSON: username, fullName, bio, followers, threadsCount, profileUrl, avatar, and a posts array of the recent posts - each with text, url, age, and likes, comments, reposts, shares engagement counts. username accepts a bare handle, an @handle, or a full profile URL. No login or cookies are required - only public profiles are read.
curl --request POST \
--url https://api.scrapeunblocker.com/social/threads-profile \
--header 'x-scrapeunblocker-key: <api-key>'import requests
url = "https://api.scrapeunblocker.com/social/threads-profile"
headers = {"x-scrapeunblocker-key": "<api-key>"}
response = requests.post(url, headers=headers)
print(response.text)const options = {method: 'POST', headers: {'x-scrapeunblocker-key': '<api-key>'}};
fetch('https://api.scrapeunblocker.com/social/threads-profile', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}Authorizations
Your ScrapeUnblocker API key. Apply on every request.
Query Parameters
Threads handle ('zuck' or '@zuck') or a full profile URL like 'https://www.threads.com/@zuck'.
Maximum recent posts to return (1-100). The profile page carries roughly the newest 10-25.
1 <= x <= 100Exit-IP country (ISO-2, e.g. 'US', 'DE'). Defaults to an exit chosen for Threads.
Response
JSON profile object with a posts array (postsCollected gives its length).

