Get Current User
Returns information about the authenticated user.
GET /users/me
Response
{
"id": "user_abc123",
"email": "user@example.com",
"name": "John Doe",
"plan": "pro",
"created_at": "2025-06-15T08:00:00Z"
}Response Fields
| Field | Type | Description |
|---|---|---|
id | string | User ID |
email | string | Email address |
name | string | Display name |
plan | string | free or pro |
created_at | string | Account creation date |
Code Examples
curl https://api.makeform.ai/users/me \
-H "Authorization: Bearer mk_xxxxxxxxxxxxx"