Skip to main content

Borrowing Limits

Your Trust Score directly determines how much you can borrow and for how long.

Limit Tiers

Trust ScoreTierMax AmountMax DurationInterest Rate
0-30New$207 days5%
31-50Building$5014 days4%
51-70Established$10030 days3%
71-85Trusted$20060 days2%
86-100Elite$50090 days0-1%

Level Multipliers

Your level applies a multiplier to your base limits:
function calculateEffectiveLimit(trustScore: number, level: Level): number {
  const baseLimit = getBaseLimitForScore(trustScore);
  const multiplier = getLevelMultiplier(level);

  return baseLimit * multiplier;
}

// Multipliers
const multipliers = {
  Bronze: 1.0,
  Silver: 1.0,
  Gold: 1.25,
  Platinum: 1.5,
  Diamond: 2.0
};

Example Calculations

Trust Score: 25 (New tier)
Level: Bronze

Base Limit: $20
Multiplier: 1.0

Effective Limit: $20
Max Duration: 7 days

Utilization

You can have multiple active loans, but your total borrowed amount cannot exceed your effective limit:
function canBorrow(user: User, requestedAmount: number): boolean {
  const effectiveLimit = calculateEffectiveLimit(user.trustScore, user.level);
  const currentBorrowed = user.activeLoans.reduce((sum, loan) => sum + loan.amount, 0);

  return (currentBorrowed + requestedAmount) <= effectiveLimit;
}
If your Trust Score drops (e.g., due to a late payment), your effective limit decreases. You won’t be forced to repay existing loans early, but you won’t be able to borrow more until you’re back under the limit.

Vault vs P2P Limits

Limits apply differently to the two loan types:
Loan TypeLimit ApplicationInterest Rate
Trust VaultFull limit appliesVariable (pool rate)
P2P LoansFull limit appliesNegotiated with lender
P2P lenders can choose to lend to users regardless of their Trust Score, but they assume the full risk.

Increasing Your Limits

1

Repay On Time

Each on-time repayment adds +2 points to your Trust Score
2

Add Guardians

Each Guardian adds +5 points (max 3 Guardians = +15 points)
3

Level Up

Earn XP to reach higher levels with better multipliers
4

Build History

Time and consistent activity increase your seniority and volume scores

API Reference

Check a user’s current limits:
curl -X GET "https://api.usmewe.com/v1/users/{userId}/limits" \
  -H "Authorization: Bearer YOUR_TOKEN"
Response:
{
  "userId": "user_123",
  "trustScore": 65,
  "level": "Gold",
  "limits": {
    "maxAmount": 125,
    "maxDuration": 30,
    "currentBorrowed": 50,
    "available": 75
  }
}

Full API Docs

Explore all Trust Score API endpoints