Skip to content

Get current user information

GET
/me
curl --request GET \
--url https://www.eventpop.me/api/public/me

Returns profile information for the authenticated user. Requires User Access Token with public scope. Rate limited to 10 requests per minute.

access_token
string

OAuth Token (alternative to Authorization header)

Get authenticated user profile

Media typeapplication/json

PublicAPI_Entities_User model

object
id

Unique user identifier

integer format: int32
full_name

User full name

string
email

User email address

string
avatar

Default avatar image URL

string
avatars
object
original
string
birthday

User birthday (YYYY-MM-DD format)

string
gender

User gender

string
phone

User phone number

string
Examplegenerated
{
"id": 1,
"full_name": "example",
"email": "example",
"avatar": "example",
"avatars": {
"original": "example"
},
"birthday": "example",
"gender": "example",
"phone": "example"
}

Unauthorized - Invalid or missing access token

Media typeapplication/json