Developer Portal

My ProfileGET

Returns the profile of the authenticated user, identified by the JWT subject. Includes identity fields (id, email, first/last name) and profile metadata (language, country, address, etc.).

View as Markdown
GET
/profiles/me

Authorization

AuthorizationRequiredBearer <token>

JWT token obtained from the login endpoint

In: header

curl -X GET "http://localhost:8081/api/v1/profiles/me" \
  -H "Authorization: Bearer <token>"

Profile retrieved successfully

{
  "id": "string",
  "email": "user@example.com",
  "first_name": "string",
  "last_name": "string",
  "language": "string",
  "address": "string",
  "zip_code": "string",
  "city": "string",
  "state": "string",
  "country": "string",
  "phone": "string",
  "company": "string",
  "birth_date": 0
}