Skip to main content
POST
/
lending-stocks
/
api
/
positions
/
{marketId}
/
borrow-more
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", "useRelayer": true}'
{
  "success": true,
  "data": { "txHash": "0xabc...def", "loanId": 5, "additionalBorrow": "2000" }
}
Increases the borrowed amount on an active loan. Reverts if total debt would exceed the maximum borrow capacity.

Path Parameters

marketId
string
required
Market ID.

Body Parameters

loanId
integer
required
On-chain loan ID.
amount
string
required
Additional USDC to borrow.
signedPrice
object
Optional EIP-712 signed price.
useRelayer
boolean
default:"false"
Execute via relayer or return calldata.
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", "useRelayer": true}'
{
  "success": true,
  "data": { "txHash": "0xabc...def", "loanId": 5, "additionalBorrow": "2000" }
}