Skip to content

GET /v1/me

Summary

Returns basic profile information about the user associated with the current API key. Use this endpoint to verify your credentials or retrieve account details.

HTTP Request

http
GET /v1/me

Response

Success (200 OK)

Returns a JSON object whose status is "SUCCESS" and a data object containing:

FieldTypeDescription
usernamestring | nullThe user's username, if set.
displayNamestring | nullThe user's display name, if set.
userFlagsintegerBitwise flags representing account features.

Example response

json
{
  "status": "SUCCESS",
  "data": {
    "username": "janedoe",
    "displayName": "Jane Doe",
    "userFlags": 3
  }
}

Error responses

HTTP statusstatus codeDescription
401UNAUTHORIZED_ERRORMissing or invalid API key.

See also