POST

User Profile

/v1/threads/user

Get a complete Threads user profile including follower counts, bio, verification status, and profile picture.

Request Parameters

ParameterTypeRequiredDescription
usernamestringYesThreads 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.

FieldTypeDescription
idstringUnique Threads user ID
usernamestringThreads handle
full_namestringDisplay name
biographystringProfile biography
follower_countintNumber of followers
following_countintNumber of accounts followed
is_verifiedboolWhether the user is verified
profile_pic_urlstringURL 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