Alfa-Bank APIalfabank.ru ↗
Retrieve Alfa-Bank consumer loan data: product listings, interest rate ranges (PSK and nominal), loan amount limits, repayment terms, and conditions.
What is the Alfa-Bank API?
The Alfa-Bank Loan API provides 2 endpoints to access consumer loan catalog data from alfabank.ru. Use get_loan_products to pull the full product listing with names and key features, or call get_loan_details with a specific product path to retrieve granular fields including PSK interest rate ranges, minimum and maximum loan amounts, repayment terms, and application conditions. Responses include 8+ structured fields per product.
No input parameters required.
curl -X GET 'https://api.parse.bot/scraper/61c25f9e-3870-41e2-97e0-ed1ed519fcc7/get_loan_products' \ -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 alfabank-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.
from parse_apis.alfa_bank_loan_products_api import AlfaBank, LoanProduct, LoanDetail, ProductPath
client = AlfaBank()
# List all available loan products
for product in client.loanproducts.list():
print(product.name, product.detail_url, product.features)
# Get detailed information for a specific loan product
detail = client.loandetails.get(product_path=ProductPath.CREDIT_CASH)
print(detail.name, detail.url)
print(detail.interest_rate.psk_min, detail.interest_rate.psk_max)
print(detail.loan_amount.min_value, detail.loan_amount.max_value, detail.loan_amount.currency)
print(detail.loan_term.max_value, detail.loan_term.unit)
for condition in detail.conditions:
print(condition.name, condition.description)
Retrieves all available consumer loan products from Alfa-Bank. Returns a list of product summaries including name, detail URL, and key features (maximum amount, loan term). No parameters required — the full catalog is returned in a single page.
No input parameters required.
{
"type": "object",
"fields": {
"products": "array of product summaries with name, detail_url, and features",
"total_products": "integer count of products returned"
},
"sample": {
"data": {
"products": [
{
"name": "Кредит наличными",
"features": [
"За 2 минуты"
],
"detail_url": "https://alfabank.ru/get-money/credit/credit-cash/"
},
{
"name": "Кредит под залог на любые цели",
"features": [
"До 30 млн ₽",
"От 1 до 15 лет",
"Нужен только паспорт"
],
"detail_url": "https://alfabank.ru/get-money/credit/pod-zalog/"
}
],
"total_products": 10
},
"status": "success"
}
}About the Alfa-Bank API
Endpoint Overview
The API exposes two endpoints covering Alfa-Bank's consumer loan offerings. get_loan_products requires no parameters and returns an array of all available loan products, each including a name, detail_url, and a features summary covering maximum loan amount and term. The total_products integer lets you confirm catalog size at a glance.
Detailed Loan Data
get_loan_details accepts a required product_path string — valid values are credit/credit-cash, credit/pod-zalog, and credit/ — and returns a full breakdown of a single product. The interest_rate object includes four percentage strings: psk_min, psk_max (full cost of credit range) and rate_min, rate_max (nominal rate range). The loan_amount object provides min_value, max_value, and currency. loan_term returns a structured object with max_value and unit. Additional fields include conditions (an array of name/description pairs), special_conditions (an array of free-text strings), description (SEO meta text), and the canonical url.
Coverage and Scope
The API covers the three primary consumer loan paths published on alfabank.ru's loan landing page: an unsecured cash loan, a secured loan, and the general credit product. Data reflects what Alfa-Bank publishes publicly on those product pages, including structured rate and amount information.
The Alfa-Bank API is a managed, monitored endpoint for alfabank.ru — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when alfabank.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 alfabank.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?+
- Compare PSK and nominal interest rate ranges across Alfa-Bank consumer loan products
- Display current Alfa-Bank loan amount limits (min/max in RUB) in a personal finance app
- Aggregate Russian bank loan terms alongside offers from other lenders for side-by-side comparison
- Monitor changes in Alfa-Bank loan conditions or special conditions over time
- Populate a loan calculator with live Alfa-Bank rate and term data
- Build a financial research dataset of Russian retail banking loan products
| 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 Alfa-Bank have an official public developer API for loan data?+
What does get_loan_details return for interest rates?+
interest_rate object contains four fields: psk_min and psk_max representing the full cost of credit (PSK) as percentage strings, and rate_min and rate_max representing the nominal annual rate range. These reflect the range published on the product page, not a rate personalized to any applicant.Does the API cover credit card or mortgage products from Alfa-Bank?+
credit/ path. Credit cards, mortgages, car loans, and business lending are not included. You can fork this API on Parse and revise it to add endpoints for those product pages.How many loan products does get_loan_products return, and can I filter by amount or rate?+
total_products count. There is no filtering by loan amount, rate, or term at the catalog level — filtering needs to happen client-side on the returned array. You can fork the API on Parse and revise it to add server-side filtering logic.Does the API return personalized rate quotes or eligibility assessments?+
interest_rate fields represent the published range for the product, not a quote tied to any individual's credit profile. Eligibility checks and personalized offers are not accessible through this API.