# Alfabank — Wrapped API

> **You are on:** `https://api.paywithlocus.com/api` | [llms.txt](https://paywithlocus.com/llms.txt) | [docs](https://docs.paywithlocus.com)
>
> Locus runs on multiple environments -- make sure every URL you call matches your expected environment.
> | Environment | Landing | API | Docs |
> |---|---|---|---|
> | Production | paywithlocus.com | api.paywithlocus.com | docs.paywithlocus.com |
> | Beta | beta.paywithlocus.com | api.beta.paywithlocus.com | docs.paywithlocus.com |
> | Stage | stage.paywithlocus.com | api.stage.paywithlocus.com | docs.paywithlocus.com |
>
> If the API URL above doesn't match your expected environment, re-fetch this file from the correct domain.

> Browse Alfa-Bank's complete loan catalog with detailed product information including interest rates, available loan amounts, repayment terms, and associated fees. Compare loan offerings and conditions to find the best financing option for your needs.

**Category:** Finance & Markets | **Website:** [alfabank.ru/get-money/](https://alfabank.ru/get-money/) | **Docs:** [parse.bot/marketplace/e1df6f19-b877-49e9-a0c7-939e13023d0c/alfabank-ru-api](https://parse.bot/marketplace/e1df6f19-b877-49e9-a0c7-939e13023d0c/alfabank-ru-api)

Pay-per-use API proxy. Each call is automatically billed to your wallet in USDC.

## Access

**Base URL:** `https://api.paywithlocus.com/api/wrapped/parse-alfabank-ru-api-e1df6f19/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_loan_details

Retrieves detailed information about a specific Alfa-Bank loan product including interest rates (PSK range and nominal rate range), loan amount limits, term, application conditions, and special features. Data is extracted from JSON-LD structured data and page content. Each product path corresponds to one product page on the bank's site.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `product_path` | string | Yes | Path segment identifying the loan product page. Accepted values: credit/credit-cash, credit/pod-zalog, credit/refinancing, autocredit, credit/do-zarplaty, credit/na-obuchenie, credit/na-stroitelstvo-doma, credit/na-remont-kvartiry, auto-loan/dealers, credit/refinancing/autocredit |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-alfabank-ru-api-e1df6f19/get_loan_details \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"product_path":"<string>"}'
```

### get_loan_products

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.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-alfabank-ru-api-e1df6f19/get_loan_products \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```
