loan_create
Create a crypto-backed loan by specifying either the collateral amount (fixed_collateral) or the loan amount (fixed_loan). The tool calculates the other amount automatically.
Instructions
Create a new loan by providing cryptocurrency as guarantee (collateral) to receive loan currency (can be any supported currency like USDC, EURC, or fiat). Specify amount_type to determine calculation mode: 'fixed_collateral' (guarantee amount is fixed, loan amount is calculated) or 'fixed_loan' (loan amount is fixed, guarantee amount is calculated). This avoids mathematical errors where the model tries to guess the exact LTV manually. Returns loan order details with status. [PRIVATE]
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| guarantee_symbol | Yes | Guarantee cryptocurrency symbol (e.g., BTC) | |
| loan_symbol | Yes | Loan currency symbol (e.g., USDC, EURC, EUR). Can be any supported currency. | |
| amount_type | Yes | Calculation mode: 'fixed_collateral' means guarantee amount is fixed and loan amount will be calculated; 'fixed_loan' means loan amount is fixed and guarantee amount will be calculated | |
| guarantee_amount | No | Guarantee amount (required when amount_type is 'fixed_collateral') | |
| loan_amount | No | Loan amount (required when amount_type is 'fixed_loan') | |
| user_symbol | No | User's fiat currency symbol for conversion (e.g., EUR, USD). Optional, defaults to EUR. Used internally for calculations. | EUR |
| jwt | No | Optional session token for authentication. API keys are recommended for most use cases. |