POST
User Profile
/v1/threads/userGet a complete Threads user profile including follower counts, bio, verification status, and profile picture.
Request Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| username | string | Yes | Threads username |
Example
curl -X POST https://query-data-api.notpeople.ai/v1/threads/user \
-H "X-API-Key: th_live_your_key" \
-H "Content-Type: application/json" \
-d '{"username": "zuck"}'Response Schema
All responses include success, data, and usage fields.
| Field | Type | Description |
|---|---|---|
| id | string | Unique Threads user ID |
| username | string | Threads handle |
| full_name | string | Display name |
| biography | string | Profile biography |
| follower_count | int | Number of followers |
| following_count | int | Number of accounts followed |
| is_verified | bool | Whether the user is verified |
| profile_pic_url | string | URL to the profile picture |
Example Response
{
"success": true,
"data": {
"id": "63055343223",
"username": "zuck",
"full_name": "Mark Zuckerberg",
"biography": "Mostly superintelligence and MMA takes",
"follower_count": 5457633,
"following_count": 0,
"is_verified": true,
"profile_pic_url": "https://scontent.cdninstagram.com/.../photo.jpg"
},
"usage": {
"unique_posts": 83,
"limit": 6000,
"remaining": 5917
}
}Try this endpoint live
Sign up for free to try endpoints directly from the docs. No credit card required.
Create Free Account