> ## Documentation Index
> Fetch the complete documentation index at: https://docs.trusset.org/llms.txt
> Use this file to discover all available pages before exploring further.

# Borrow More

> Borrow additional USDC against existing collateral

Increases the borrowed amount on an active loan. Reverts if total debt would exceed the maximum borrow capacity.

## Path Parameters

<ParamField path="marketId" type="string" required>Market ID.</ParamField>

## Body Parameters

<ParamField body="loanId" type="integer" required>On-chain loan ID.</ParamField>
<ParamField body="amount" type="string" required>Additional USDC to borrow.</ParamField>
<ParamField body="signedPrice" type="object">Optional EIP-712 signed price.</ParamField>

<RequestExample>
  ```bash cURL theme={null}
  curl -X POST "https://api.trusset.org/lending-stocks/api/positions/{marketId}/borrow-more" \
    -H "X-API-Key: trusset_your_key_here" \
    -H "Content-Type: application/json" \
    -d '{"loanId": 5, "amount": "2000"}'
  ```
</RequestExample>

<ResponseExample>
  ```json Response theme={null}
  {
    "success": true,
    "data": { "txHash": "0xabc...def", "loanId": 5, "additionalBorrow": "2000" }
  }
  ```
</ResponseExample>
