Users API
Get Current User
GET /v1/me
Response:
{
"id": "user_123",
"name": "Nguyễn Văn A",
"phone": "0329xxx232",
"elo": 1250,
"rank": "I",
"spa_balance": 5000
}
Get User by ID
GET /v1/users/:id
Update Profile
PATCH /v1/me
Content-Type: application/json
{
"name": "Tên mới",
"avatar_url": "https://..."
}