norvikbank.ru APInorvikbank.ru ↗
Fetch loan product data from Norvik Bank: interest rates, loan amounts, terms, fees, insurance, and collateral for 5 loan types via 2 endpoints.
curl -X GET 'https://api.parse.bot/scraper/aeb4aaaa-36c2-433b-882d-6608bd2328f9/get_loan_products' \ -H 'X-API-Key: $PARSE_API_KEY'
Fetches all available loan products from Norvik Bank with their full conditions including interest rates, amounts, terms, fees, insurance requirements, and collateral. Returns data for 5 loan types: consumer credit, secured loan, refinancing, car loan, and house building loan.
| Param | Type | Description |
|---|---|---|
| region | string | Region code for localized content. Confirmed working value: msk (Moscow). |
{
"type": "object",
"fields": {
"loans": "array of loan product objects",
"total": "integer"
},
"sample": {
"loans": [
{
"url": "/retail/credits/potrebitelskiy_kredit/",
"fees": {
"early_repayment": "Бесплатно",
"remote_processing": "Бесплатно",
"account_maintenance": "Бесплатно"
},
"insurance": "При залоге недвижимого имущества: договор страхования предмета залога от рисков утраты и повреждения.",
"loan_name": "Потребительский кредит",
"loan_term": "от 1 до 60 месяцев",
"full_cost_psk": "От 16,501% до 38,565% годовых",
"interest_rate": "от 16,5% до 38,5% годовых",
"max_loan_amount": "до 1 500 000 ₽",
"min_loan_amount": "30 000 ₽",
"payment_schedule": "Каждый месяц равными платежами",
"special_conditions": null,
"collateral_required": null
}
],
"total": 5
}
}About the norvikbank.ru API
The Norvik Bank API provides structured access to loan product data across 5 loan categories — consumer credit, secured loan, refinancing, car loan, and house building loan — through 2 endpoints. The get_loan_products endpoint returns the full catalog with rates and conditions, while get_loan_details targets a specific product by URL path and returns fields including interest_rate, fees, loan_term, full_cost_psk, and payment_schedule.
Endpoints and Coverage
The API exposes two endpoints covering Norvik Bank's retail lending portfolio. get_loan_products returns an array of loan objects (loans) plus a total count, covering all five product types the bank offers. get_loan_details accepts a loan_url path parameter — for example /retail/credits/potrebitelskiy_kredit/ for the consumer credit page — and returns the detailed conditions for that specific product.
Response Fields
get_loan_details returns up to 10 fields per loan product: loan_name, interest_rate, min_loan_amount, max_loan_amount, loan_term, full_cost_psk (total cost of credit as a percentage), payment_schedule, insurance, collateral (implicit in the product type), and a fees object. The fees object contains three keys: early_repayment, account_maintenance, and remote_processing. Any field may be null if the bank does not publish that value for the product.
Regional Parameter
Both endpoints accept an optional region string. The confirmed working value is msk for Moscow. Omitting the parameter returns default content. If Norvik Bank serves region-specific loan conditions, passing the appropriate region code may produce localized rate or amount data.
Data Freshness and Known Paths
The response reflects the conditions published on Norvik Bank's public loan pages. Known valid loan_url paths include /retail/credits/potrebitelskiy_kredit/ and /retail/credits/. If the bank updates its URL structure or product lineup, path values may need to be updated accordingly.
- Aggregate and display current Norvik Bank loan rates alongside other Russian bank offerings for comparison tools
- Monitor changes in
interest_rateorfull_cost_pskfor consumer or secured loans over time - Pull
min_loan_amountandmax_loan_amountto pre-qualify users before redirecting them to the bank - Extract
feesfields (early_repayment,account_maintenance) to surface true loan cost breakdowns - Populate a loan calculator with
loan_termandpayment_scheduledata from the refinancing product - Alert users when
insurancerequirements change for the car loan or house building 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 | 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 Norvik Bank provide an official public developer API?+
What does the `fees` object in `get_loan_details` contain?+
fees object contains three keys: early_repayment, account_maintenance, and remote_processing. Each value is a string describing the fee condition, or null if the bank does not publish that fee for the product.Does the API cover deposit products, credit cards, or mortgage rates from Norvik Bank?+
Are loan conditions available for regions other than Moscow?+
region parameter is optional and msk (Moscow) is the confirmed working value. Other region codes have not been verified. If you need confirmed coverage for a different region, you can fork this API on Parse and test additional region values against the bank's published content.What happens if a `loan_url` path I pass to `get_loan_details` is no longer valid?+
/retail/credits/potrebitelskiy_kredit/ and /retail/credits/. If the bank restructures its site, the paths should be updated accordingly.