Get Current User

Verify an access token and get the authenticated user's info, application details, subscription plan, and granted scopes. Requires an OAuth access token.

GET/v1/me

Authentication

OAuthAuthorization: Bearer

Requires OAuth access token

Responses

200Success
application/json
userobject

Authenticated user info

applicationobject

Application (website) the token belongs to

scopearray

Granted OAuth scopes for this token

Check the connected account

Use Get Current User as an initial connection check after obtaining an OAuth access token. This request has no query parameters. Send the token in the Authorization header and inspect the user, application and scope fields in the response. It is a useful first step before a larger contact import or listings workflow because it identifies the account behind the current credentials.

Match the response to your integration

The user object identifies the authenticated person. The application object describes the website associated with the token, while scope lists the permissions granted to it. Compare the application ID and URL with the website your user intended to connect. Do not assume that a successful connection includes every available permission: check for the scope required by the next endpoint.

Handle account data responsibly

Display only the account information needed to confirm the connection. Avoid placing access tokens or full profile responses in public logs. Subscription details provide account context; they do not replace endpoint-specific permission checks. If this request fails, investigate authentication before running dependent API requests. When asking for support, share a redacted response and the request time rather than credentials.

OAuth authorization · Check the connected account · API setup guide