Get the full profile for a single Threads user by username. Returns biography, follower count, verification status, profile picture (standard and high resolution), the external bio links displayed on the profile, and the topic tags shown on the profile.
curl "https://apidirect.io/v1/threads/user?username=zuck" \
-H "X-API-Key: YOUR_API_KEY"
{
"user": {
"username": "zuck",
"full_name": "Mark Zuckerberg",
"user_id": "63055343223",
"biography": "Mostly superintelligence and MMA takes",
"follower_count": 5673124,
"is_verified": true,
"is_private": false,
"profile_pic_url": "https://scontent.cdninstagram.com/.../photo.jpg",
"profile_pic_url_hd": "https://scontent.cdninstagram.com/.../photo_640x640.jpg",
"bio_links": [
{"url": "https://www.meta.com", "title": "meta.com"}
],
"profile_tags": [
{"name": "aithreads", "display_name": "AI Threads"}
],
"url": "https://www.threads.com/@zuck"
}
}