Skip to main content

Users

Get Current User

Returns the user information for the authenticated user.

Get the profile information of the currently authenticated user. This is the simplest endpoint and is commonly used to verify that an access token is valid.

GET https://api.figma.com/v1/me

Authentication

Requires any valid access token. No specific scope is needed beyond basic authentication. Pass via X-Figma-Token header (personal access token) or Authorization: Bearer header (OAuth).

Parameters

No parameters required.

Example Request

curl -X GET "https://api.figma.com/v1/me" \
  -H "X-Figma-Token: YOUR_TOKEN"

Response

{
  "id": "12345",
  "handle": "designer",
  "email": "designer@example.com",
  "img_url": "https://s3-alpha.figma.com/img/..."
}

Response Fields

FieldTypeDescription
idstringThe user’s unique Figma ID
handlestringThe user’s display name
emailstringThe user’s email address
img_urlstringURL to the user’s profile image

Use this endpoint to verify that an access token is valid and has not expired. It is a lightweight call that returns quickly and does not count against file-level rate limits.