All pages
Powered by GitBook
1 of 1

Loading...

Users

Retrieve profile, subscription, and application settings for the currently authenticated user. Use this endpoint to adapt your integration to user preferences and entitlements.

Requirements

  • Authentication: Bearer API token

  • Headers:

    • Authorization: Bearer-API YOUR_API_KEY

Endpoint

Get Current User

GET /api/v1/users/me

Related Resources

  • Authentication - Managing API keys and scopes

  • Workspaces API - Access workspace information

  • Rate Limits - Understanding API usage limits

Get Current User

get

Retrieves information about the currently authenticated user.

Authorizations
Responses
200
Successful operation
application/json
401
Unauthorized
application/json
403
Permission denied or missing required scope
application/json
get
GET /api/v1/users/me HTTP/1.1
Host: app.publer.com
Authorization: YOUR_API_KEY
Accept: */*
{
  "id": "5b1ec026db27977424e8599e",
  "email": "[email protected]",
  "name": "ervintorra",
  "first_name": "Ervin",
  "picture": "https://publer-dev.s3.amazonaws.com/uploads/photos/thumb_mini_magick20250123-28707-otuw0w.png"
}