Use the GET /{threads-user-id}?fields=id,username,...
endpoint to return profile information about a Threads user.
Name | Description |
---|---|
| Threads user ID. This is returned by default. |
| Handle or unique username on Threads. |
| Display name of the user on Threads. |
| URL of the user's profile picture on Threads. |
| Biography text on Threads profile. |
curl -s -X GET \ "https://graph.threads.net/v1.0/me?ields=id,username,name,threads_profile_picture_url,threads_biography&access_token=$THREADS_ACCESS_TOKEN"
{ "id": "1234567", "username": "threadsapitestuser", "name": "Threads API Test User", "threads_profile_picture_url": "https://scontent-sjc3-1.cdninstagram.com/link/to/profile/picture/on/threads/", "threads_biography": "This is my Threads bio." }