Skip to main content
GET
https://finceptbackend.share.zrok.io
/
user
/
profile
curl -X GET "https://finceptbackend.share.zrok.io/user/profile" \
  -H "X-API-Key: fk_user_your_api_key"
{
  "success": true,
  "message": "Profile retrieved successfully",
  "data": {
    "user_id": 42,
    "email": "john@example.com",
    "full_name": "John Doe",
    "credits": 100,
    "account_type": "professional",
    "is_verified": true,
    "created_at": "2025-01-01T00:00:00Z"
  }
}

Headers

X-API-Key
string
required
User API key
curl -X GET "https://finceptbackend.share.zrok.io/user/profile" \
  -H "X-API-Key: fk_user_your_api_key"
{
  "success": true,
  "message": "Profile retrieved successfully",
  "data": {
    "user_id": 42,
    "email": "john@example.com",
    "full_name": "John Doe",
    "credits": 100,
    "account_type": "professional",
    "is_verified": true,
    "created_at": "2025-01-01T00:00:00Z"
  }
}