Skip to main content

Get Current User Profile

Retrieves the profile information for the currently authenticated user.

Endpoint​

GET /api/v1/users/me

Authentication​

Requires JWT token (Bearer authentication).

JWT Only

This endpoint requires a JWT access token. API keys cannot be used for user profile endpoints.

Request​

No request body or query parameters required.

Headers​

Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...

Response​

Success Response (200 OK)​

{
"id": "550e8400-e29b-41d4-a716-446655440000",
"email": "john@example.com",
"phone_number": "+12025551234",
"is_active": true,
"is_verified": true,
"created_at": "2024-01-15T10:30:00Z",
"updated_at": "2024-01-15T10:30:00Z"
}

Response Fields​

FieldTypeDescription
idUUIDUnique user identifier
emailstringUser's email address
phone_numberstringUser's phone number (E.164 format)
is_activebooleanWhether account is active
is_verifiedbooleanWhether email is verified
created_atdatetimeAccount creation timestamp (ISO 8601)
updated_atdatetimeLast update timestamp (ISO 8601)

Examples​

curl https://api.callcov.com/api/v1/users/me \
-H "Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9..."