Sessions
Get current user
GET
/api/v1/auth/meReturns the profile of the currently signed-in user.
Requires Authorization
Session
Request
curl --request GET \
--url https://api.swiftgoma.com/api/v1/auth/me \
--header 'Authorization: Bearer <access_token>'200Example response
{
"success": true,
"data": {
"id": "3f2a1c9e-7b41-4e2a-9c31-8e6b2d4f10aa",
"name": "Aline Mapendo",
"role": "BUYER",
"email": "aline@example.com",
"isEmailVerified": true,
"phone": "243812345678",
"isPhoneVerified": false,
"createdAt": "2026-01-14T10:32:00.000Z"
}
}