Skip to main content
GET
/
auth
/
me
Get Current User
curl --request GET \
  --url https://api.promptmetrics.dev/auth/me \
  --header 'Authorization: Bearer <token>'
{
  "responseData": {
    "_id": "<string>",
    "email": "<string>",
    "first_name": "<string>",
    "last_name": "<string>",
    "status": "<string>"
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

Current user profile

responseData
object