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
Response
{
"id": "12345",
"handle": "designer",
"email": "designer@example.com",
"img_url": "https://s3-alpha.figma.com/img/..."
}
Response Fields
| Field | Type | Description |
|---|---|---|
id | string | The user’s unique Figma ID |
handle | string | The user’s display name |
email | string | The user’s email address |
img_url | string | URL to the user’s profile image |