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

FieldTypeDescription
idstringUser ID
emailstringEmail address
namestringDisplay name
planstringfree or pro
created_atstringAccount creation date

Code Examples

curl https://api.makeform.ai/users/me \ -H "Authorization: Bearer mk_xxxxxxxxxxxxx"