Appearance
Get Open Loans
GET
/v1/loans/open
Retrieves all loan offers placed by the current account, including details on amounts, rates, and usage. Each entry shows the total amount offered, the amount currently in use by borrowers (accruing interest hourly), and the hourly rate set at loan creation or last modification.
Authorizations
apiKey
Your API key
Type
API Key (header: X-VALR-API-KEY)
apiSignature
HMAC SHA512 signature of the request (see Authentication section)
Type
API Key (header: X-VALR-SIGNATURE)
apiTimestamp
Request timestamp in milliseconds
Type
API Key (header: X-VALR-TIMESTAMP)
Responses
Open loans retrieved successfully
application/json
JSON
[
{
"loanId": "1289055810346737664",
"currency": "USDC",
"totalAmount": "100",
"usedAmount": "0",
"hourlyRate": "0.00001255",
"createdAt": "2024-09-27T02:47:34.671Z",
"updatedAt": "2024-09-27T02:47:34.671Z"
}
]