Discover/Alfa-Bank API
live

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.

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

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.

Try it

No input parameters required.

api.parse.bot/scraper/61c25f9e-3870-41e2-97e0-ed1ed519fcc7/<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/61c25f9e-3870-41e2-97e0-ed1ed519fcc7/get_loan_products' \
  -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 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)
All endpoints · 2 totalmissing one? ·

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.

Input

No input parameters required.

Response
{
  "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.

Reliability & maintenanceVerified

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.

Last verified
5d ago
Latest check
2/2 endpoints 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
  • 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
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 Alfa-Bank have an official public developer API for loan data?+
Alfa-Bank offers a developer portal at developers.alfabank.ru focused primarily on Open Banking and payment initiation. It does not publish a public endpoint for retrieving consumer loan catalog data, rate ranges, or product conditions of the kind this API covers.
What does get_loan_details return for interest rates?+
The 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?+
Not currently. The API covers three consumer loan paths: unsecured cash loans, secured loans, and the general credit product at the 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?+
The endpoint returns all products from Alfa-Bank's loan catalog page as a single unfiltered array, along with a 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?+
No. All rate and condition data comes from Alfa-Bank's publicly published product pages. The 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.
Page content last updated . Spec covers 2 endpoints from alfabank.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.