Use the GET /{threads-user-id}?fields=id,username,...
endpoint to return profile information about a Threads user.
The Threads Profile API requires an appropriate access token and permissions based on the node you are targeting. While you are testing, you can easily generate tokens and grant your app permissions by using the Graph API Explorer.
threads_basic
— Required for making any calls to all Threads API endpoints.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?fields=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." }