Returns information about the currently authenticated user or API token owner.
This endpoint allows clients to verify:
It is commonly used as a sanity check for authentication and authorization.
Use this endpoint when you need to:
This endpoint does not modify any data and is safe to call frequently.
curl -X GET https://api.hawzu.com/api/v1/me \
-H "Authorization: Bearer YOUR_API_TOKEN"This endpoint does not accept any path, query, or body parameters.
Authentication is required via the Authorization header.
| Header | Required | Description |
|---|---|---|
Authorization | ✅ Yes | Bearer token in the format Bearer <API_TOKEN> |
{
"id": "user_123",
"type": "USER",
"name": "Srinath Reddy",
"email": "srinath@company.com",
"workspace": {
"id": "ws_001",
"name": "Hawzu Workspace"
},
"projects": [
{
"id": "proj_101",
"name": "Hawzu Core",
"role": "ADMIN"
}
],
"created_at": "2025-11-02T08:45:12Z"
}