I'mBoardDocs
Resources

Me

Retrieve the authenticated user's profile. The simplest way to verify your token.

Retrieve the authenticated user's profile. This is the simplest way to verify that your token is valid and see who it belongs to.

Endpoints

MethodPathDescription
GET/api/v1/meGet current user profile

Get Current User

GET /api/v1/me

Returns the profile of the user associated with the provided token.

Response

{
  "data": {
    "object": "user",
    "id": "507f1f77bcf86cd799439011",
    "email": "[email protected]",
    "firstName": "Jane",
    "lastName": "Doe",
    "fullName": "Jane Doe",
    "avatarUrl": "https://example.com/avatar.jpg",
    "timezone": "America/New_York",
    "language": "en",
    "createdAt": "2025-01-15T10:30:00.000Z",
    "updatedAt": "2025-06-01T14:00:00.000Z"
  }
}

Fields

FieldTypeDescription
object"user"Always "user"
idstringOpaque user ID
emailstringUser's email address
firstNamestring | nullFirst name
lastNamestring | nullLast name
fullNamestringCombined first and last name
avatarUrlstring | nullURL to the user's avatar image
timezonestring | nullIANA timezone identifier (e.g. America/New_York)
languagestring | nullISO 639-1 language code (e.g. en, he)
createdAtstringISO-8601 timestamp
updatedAtstringISO-8601 timestamp

Errors

CodeStatusWhen
UNAUTHENTICATED401Missing or invalid token
INVALID_API_TOKEN401Token expired or revoked
RATE_LIMITED429Too many requests

Example

curl -s https://app.imboard.ai/api/v1/me \
  -H "Authorization: Bearer imb_pat_YOUR_TOKEN" | jq

On this page