Appearance
Search Content User Threads
GET/public/research/threads/content/userRetrieve Threads content from a specific user by username. Useful for monitoring, reviewing, or analyzing content from a specific account.
Endpoint Details
- Authentication: Basic Auth (
Authorization: Basic Base64(AccessKey:SecretKey)) - Access Tier: Gold+
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
accountId | string | Yes | The connected Threads account ID. |
username | string | Yes | The target Threads username. |
nextToken | string | No | Pagination cursor returned from the previous response. |
Example Request
bash
curl -X GET "https://api.repliz.com/public/research/threads/content/user?accountId=680affa5ce12f2f72916f67e&username=meta" \
-H "Authorization: Basic $(echo -n 'YOUR_ACCESS_KEY:YOUR_SECRET_KEY' | base64)"javascript
import axios from 'axios';
const response = await axios.get('https://api.repliz.com/public/research/threads/content/user', {
params: {
accountId: '680affa5ce12f2f72916f67e',
username: 'meta',
},
auth: {
username: 'YOUR_ACCESS_KEY',
password: 'YOUR_SECRET_KEY',
},
});
console.log(response.data);javascript
const credentials = btoa('YOUR_ACCESS_KEY:YOUR_SECRET_KEY');
const response = await fetch(
'https://api.repliz.com/public/research/threads/content/user?accountId=680affa5ce12f2f72916f67e&username=meta',
{
headers: {
Authorization: `Basic ${credentials}`,
},
},
);
const data = await response.json();
console.log(data);Response
json
{
"docs": [
{
"id": "18439214386190993",
"title": "",
"description": "weeds are no match for @aiatmeta",
"type": "video",
"owner": {
"id": "",
"name": "",
"picture": ""
},
"medias": [
{
"type": "video",
"thumbnail": "https://scontent.cdninstagram.com/v/t51.71878-15/671284855_27517940931142...",
"url": "https://instagram.fbdo9-1.fna.fbcdn.net/o1/v/t16/f2/m84/AQORkvt4V_t1S6r06V..."
}
],
"url": "https://www.threads.com/@meta/post/DYZ80_hDVCA",
"createdAt": "2026-05-16T16:00:41.000Z"
}
],
"nextToken": ""
}json
{
"code": 404,
"message": "account not found"
}json
{
"code": 401,
"message": "unauthorized"
}