T-Bank APItbank.ru ↗
Fetch current T-Bank loan products including interest rates, loan amounts, repayment terms, fees, and conditions via a single API endpoint.
What is the T-Bank 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.
curl -X GET 'https://api.parse.bot/scraper/a64785cd-75b2-42ec-825b-e0ddcf95ce9e/get_loan_products?loan_type=all' \ -H 'X-API-Key: $PARSE_API_KEY'
Typed, relational, agent-ready
A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.
- Fully typed · autocompletes
- Objects link to objects
- Typed errors & pagination
Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:
uv add parse-sdk uv run parse init uv run parse add --marketplace tbank-ru-api
uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.
"""Walkthrough: T-Bank Loans API — discover and compare loan products."""
from parse_apis.t_bank_loans_api import TBank, LoanType, LoanTypeNotFound
client = TBank()
# List all available loan products from T-Bank
for product in client.loanproducts.list(limit=10):
print(product.loan_name, product.slug, product.interest_rate_min, product.max_loan_amount)
# Filter to a specific loan type using the enum
secured = client.loanproducts.list(loan_type=LoanType.CASH_LOAN_REALTY, limit=3).first()
if secured:
print(secured.loan_name, secured.interest_rate_min, secured.interest_rate_max, secured.collateral_required)
# Handle a typed error for an invalid loan type lookup
try:
result = client.loanproducts.list(loan_type=LoanType.EDUCATION_LOAN, limit=1).first()
if result:
print(result.loan_name, result.interest_rate_min, result.special_conditions)
except LoanTypeNotFound as exc:
print(f"Invalid loan type: {exc}")
print("exercised: loanproducts.list (all / filtered by LoanType enum / error handling)")
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. When loan_type is 'all', returns all 5 product categories; when a specific type is passed, returns only that one product. Each product carries rate ranges (annual percentage), total cost ranges, amount limits, term bounds, and textual conditions.
| Param | Type | Description |
|---|---|---|
| loan_type | string | Filter by loan product type. |
{
"type": "object",
"fields": {
"loans": "array of LoanProduct objects with rate, amount, term, fee, and condition details",
"total": "integer count of returned loan products"
},
"sample": {
"data": {
"loans": [
{
"slug": "cash-loan-nopledge",
"loan_name": "Кредит без залога",
"loan_term_max": "5 лет",
"loan_term_min": "1 год",
"total_cost_max": 39.895,
"total_cost_min": 19.878,
"max_loan_amount": 5000000,
"min_loan_amount": null,
"interest_rate_max": 40,
"interest_rate_min": 19.9,
"insurance_required": "Нет (необязательно)",
"special_conditions": "Без справок о доходах и поручителей. Нужен только паспорт. Возраст заемщика от 18 до 70 лет.",
"collateral_required": "Нет",
"early_repayment_fee": "Бесплатно"
}
],
"total": 1
},
"status": "success"
}
}About the T-Bank API
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.
The T-Bank API is a managed, monitored endpoint for tbank.ru — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when tbank.ru changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.
This isn't an official tbank.ru API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.
Will this API break when the source site changes?+
Is this an official API from the source site?+
Can I fix or extend this API myself if I need a new endpoint or field?+
What happens if I call an endpoint that has an issue?+
- 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 | 100 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.