tbank.ru APIwww.tbank.ru ↗
Fetch current T-Bank loan products including interest rates, loan amounts, repayment terms, fees, and conditions via a single API endpoint.
curl -X GET 'https://api.parse.bot/scraper/a64785cd-75b2-42ec-825b-e0ddcf95ce9e/get_loan_products' \ -H 'X-API-Key: $PARSE_API_KEY'
Get all available loan products from T-Bank with their terms and conditions. Returns detailed information about each loan including interest rates, loan amounts, terms, fees, collateral requirements, and special conditions. Data is extracted from the bank's official tariff pages.
| Param | Type | Description |
|---|---|---|
| loan_type | string | Filter by loan product type. Accepts exactly one of: all, cash-loan-nopledge, cash-loan-auto, cash-loan-realty, auto-loan, education-loan. |
{
"type": "object",
"fields": {
"loans": "array of loan product objects",
"total": "integer"
},
"sample": {
"loans": [
{
"slug": "cash-loan-auto",
"loan_name": "Кредит под залог авто",
"loan_term_max": "7 лет",
"loan_term_min": "1 год",
"total_cost_max": 32.892,
"total_cost_min": 19.879,
"max_loan_amount": 7000000,
"min_loan_amount": 100000,
"interest_rate_max": 32.9,
"interest_rate_min": 19.9,
"insurance_required": "Нет (необязательно)",
"special_conditions": "Нужен паспорт и свидетельство о регистрации (СТС). Автомобиль остается у владельца.",
"collateral_required": "Автомобиль",
"early_repayment_fee": "Бесплатно"
}
],
"total": 1
}
}About the tbank.ru API
The T-Bank Loan Products API exposes 1 endpoint — get_loan_products — that returns structured data on all current lending offerings from tbank.ru, including interest rates, loan amounts, repayment terms, fees, collateral requirements, and special conditions. Each response contains a loans array with per-product objects and a total count, covering cash loans with no pledge, auto-secured loans, and realty-secured loans.
What the API Returns
The get_loan_products endpoint returns an array of loan product objects under the loans field, along with a total integer indicating how many products matched the query. Each object in the array contains the details T-Bank publishes on its official tariff pages: interest rates, available loan amounts, repayment terms, applicable fees, collateral requirements, and any special conditions tied to that product.
Filtering by Loan Type
The optional loan_type parameter narrows results to a specific product category. Accepted values are all (default behavior, returns every product), cash-loan-nopledge (unsecured cash loans), cash-loan-auto (loans secured by a vehicle), and cash-loan-realty (loans secured by real estate). Omitting the parameter behaves equivalently to passing all.
Data Coverage
All data reflects T-Bank's published lending conditions, including the minimum and maximum loan amounts, the interest rate range for each product, available term lengths in months, and any fees such as origination or service charges. Collateral requirements are included where applicable, distinguishing unsecured products from those requiring a vehicle or property as security.
Source and Freshness
Data is sourced from T-Bank's official loan pages at tbank.ru. Because lending terms change when the bank updates its tariff schedules, it is advisable to query the endpoint regularly if your application depends on current rate information rather than cached snapshots.
- Display up-to-date T-Bank loan rates and terms in a personal finance comparison tool
- Alert users when T-Bank's interest rates for unsecured cash loans change
- Populate a loan calculator with real T-Bank amount and term ranges
- Build a side-by-side comparison of secured vs. unsecured T-Bank loan products using collateral and rate fields
- Monitor T-Bank fee structures over time by logging the
loansarray at regular intervals - Surface T-Bank lending options inside a banking aggregator dashboard filtered by product type
| Tier | Price | Credits/month | Rate limit |
|---|---|---|---|
| Free | $0/mo | 100 | 5 req/min |
| Hobby | $30/mo | 1,000 | 20 req/min |
| Developer | $100/mo | 5,000 | 250 req/min |
One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.
Does T-Bank have an official public developer API for loan product data?+
What does the `loan_type` parameter actually filter, and what values are valid?+
loan_type restricts the loans array to a single product category. The four accepted values are all, cash-loan-nopledge, cash-loan-auto, and cash-loan-realty. Any other value is invalid. If you omit the parameter entirely, the endpoint returns all available products, equivalent to all.