Facebook
Profiles - Threads API - Documentation - Meta for Developers

Retrieve Threads Profiles

Retrieve a Threads User's Profile Information

Use the GET /{threads-user-id}?fields=id,username,... endpoint to return profile information about a Threads user.

Fields

Name Description

id

Threads user ID. This is returned by default.

username

Handle or unique username on Threads.

name

Display name of the user on Threads.

threads_profile_picture_url

URL of the user's profile picture on Threads.

threads_biography

Biography text on Threads profile.

Example Request

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"

Example Response

{
  "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."
}
Design a Mobile Website
View Site in Mobile | Classic
Share by: