Skip to main content
GET
/
api
/
v1
/
me
Get current user profile
curl --request GET \
  --url https://api.flowxi.app/api/v1/me \
  --header 'Authorization: Bearer <token>'
{
  "code": "ME_OK",
  "message": "OK",
  "data": {
    "id": 17,
    "email": "[email protected]",
    "status": "active",
    "locale": "fr",
    "username": "fx00000017",
    "photo_url": "https://s3.us-west-004.backblazeb2.com/flowxi-storage-prod/profile_photos/....",
    "first_name": "Jafette",
    "last_name": "Fandjinou",
    "birth_date": "1999-01-01",
    "country": "BJ",
    "nationality": "BEN",
    "phone_number": "+22900000000",
    "twofa_enabled": false,
    "created_at": "2026-01-09T17:08:57.000000Z",
    "updated_at": "2026-01-09T17:39:23.000000Z"
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Headers

X-App-Locale
string

Optional locale override (fallback is fr if missing/invalid).

Example:

"fr"

Response

OK

code
string
required
Example:

"OK"

message
string
required
Example:

"OK"

data
object
required