Skip to main content
GET
/
api
/
auth
/
me
Get current user profile
curl --request GET \
  --url https://api.ai2fin.com/api/auth/me \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "user": {
    "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "email": "[email protected]",
    "firstName": "<string>",
    "lastName": "<string>",
    "businessType": "business",
    "countryCode": "AU",
    "emailVerified": true
  },
  "authenticated": true
}

Authorizations

Authorization
string
header
required

JWT token obtained from /api/auth/login endpoint

Response

200 - application/json

User profile retrieved

success
boolean
user
object
authenticated
boolean