200 - data contains name, email, user_role, is_active, block_status, created_at, and current location (current_lat, current_lng, current_city, current_state, current_timezone).401 - invalid or expired token | 403 - not an admin | 404 - profile not foundAuthorization: Bearer ********************curl --location 'https://uat-api.hastaai.in/api/v1/admin/me' \
--header 'Authorization: Bearer <token>'{
"success": true,
"message": "Admin profile fetched successfully",
"data": {
"name": "Rishab De Roy",
"email": "admin@hastaai.in",
"user_role": "admin",
"is_active": true,
"block_status": false,
"created_at": "2026-05-01T10:30:00",
"current_lat": 28.6139,
"current_lng": 77.209,
"current_city": "New Delhi",
"current_state": "Delhi",
"current_timezone": "Asia/Kolkata"
}
}