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
| Method | Path | Description |
|---|---|---|
GET | /api/v1/me | Get current user profile |
Get Current User
GET /api/v1/meReturns 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
| Field | Type | Description |
|---|---|---|
object | "user" | Always "user" |
id | string | Opaque user ID |
email | string | User's email address |
firstName | string | null | First name |
lastName | string | null | Last name |
fullName | string | Combined first and last name |
avatarUrl | string | null | URL to the user's avatar image |
timezone | string | null | IANA timezone identifier (e.g. America/New_York) |
language | string | null | ISO 639-1 language code (e.g. en, he) |
createdAt | string | ISO-8601 timestamp |
updatedAt | string | ISO-8601 timestamp |
Errors
| Code | Status | When |
|---|---|---|
UNAUTHENTICATED | 401 | Missing or invalid token |
INVALID_API_TOKEN | 401 | Token expired or revoked |
RATE_LIMITED | 429 | Too many requests |
Example
curl -s https://app.imboard.ai/api/v1/me \
-H "Authorization: Bearer imb_pat_YOUR_TOKEN" | jq