Discover/T-Bank API
live

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.

This API takes change requests — .
Endpoint health
verified 8d ago
get_loan_products
1/1 passing latest checkself-healing
Endpoints
1
Updated
1mo ago

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.

Try it
Filter by loan product type.
api.parse.bot/scraper/a64785cd-75b2-42ec-825b-e0ddcf95ce9e/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
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'
Python SDK · recommended

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)")
All endpoints · 1 totalmissing one? ·

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.

Input
ParamTypeDescription
loan_typestringFilter by loan product type.
Response
{
  "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.

Reliability & maintenanceVerified

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.

Last verified
8d ago
Latest check
1/1 endpoint passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • 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 loans array at regular intervals
  • Surface T-Bank lending options inside a banking aggregator dashboard filtered by product type
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 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.

Frequently asked questions
Does T-Bank have an official public developer API for loan product data?+
T-Bank does not publish a documented public API for loan product terms and conditions. The tbank.ru loan pages are consumer-facing and do not offer a developer endpoint with structured tariff data.
What does the `loan_type` parameter actually filter, and what values are valid?+
Passing 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.
Does the API cover T-Bank mortgage products or credit cards?+
Not currently. The API covers cash loans in three categories: unsecured, auto-secured, and realty-secured. Mortgage products, credit cards, and other credit facilities are not included. You can fork this API on Parse and revise it to add endpoints targeting those product pages.
How fresh is the rate and fee data returned by `get_loan_products`?+
The data reflects what T-Bank publishes on its official tariff pages at the time of the request. T-Bank can update its lending conditions at any time, so the figures are as current as the bank's own published pages but are not guaranteed to reflect intra-day changes.
Does the API return individual applicant-specific loan offers or pre-qualification results?+
No. The API returns T-Bank's publicly published product terms — rate ranges, amount ranges, and standard conditions — not personalized offers tied to a specific applicant's credit profile. Applicant-specific pricing requires T-Bank's own application flow, which is not exposed here. You can fork this API on Parse and revise it to incorporate additional data points if your use case requires different scoping.
Page content last updated . Spec covers 1 endpoint from tbank.ru.
Related APIs in FinanceSee all →
fred.stlouisfed.org API
Access data from fred.stlouisfed.org.
cmegroup.com API
Get CME Group market data including FedWatch interest-rate probabilities, futures quotes and settlements, volume/open interest history, and options expirations and near-the-money option chains.
rba.gov.au API
Access Reserve Bank of Australia data including CPI inflation (current and historical), housing and business lending rates, AUD exchange rates, monetary policy/cash rate changes, and the RBA balance sheet.
polygon.io API
Access real-time and historical market data for stocks, cryptocurrencies, forex, and commodities—including price aggregates, ticker details, and financial statements—all from a single platform. Get the latest market news, check trading status across exchanges, and retrieve comprehensive ticker information to power your investment analysis and trading decisions.
data.ecb.europa.eu API
Access official European Central Bank statistical series and observations to retrieve economic data like exchange rates, interest rates, and monetary aggregates. Browse available dataflows and retrieve specific time series data to analyze ECB's published economic indicators.
banks.data.fdic.gov API
Search FDIC-insured banks by location or institution, and access detailed information about their financial performance, merger history, deposit demographics, and regulatory changes. Get comprehensive data on bank failures, acquisitions, and historical financial trends to research institutions and analyze the banking landscape.
alphavantage.co API
Track stock prices, forex rates, and cryptocurrency values with real-time and historical market data, while accessing company financials, earnings reports, and technical indicators. Search tickers, monitor economic indicators, analyze news sentiment, and get global quotes all in one place.
polymarket.com API
Browse top Polymarket events and markets by volume/liquidity and view the Polymarket trader leaderboard (profit or volume) over common timeframes.