# Depozaur — 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.

> Compare and discover the best Polish savings accounts by interest rate, filtered by your desired balance range to find the highest-earning option for your money. Browse through current savings account offers and make informed decisions based on real-time rate comparisons.

**Category:** Finance & Markets | **Website:** [depozaur.pl/konta-oszczednosciowe/0-1000000](https://depozaur.pl/konta-oszczednosciowe/0-1000000) | **Docs:** [parse.bot/marketplace/0a724afd-7fa8-4e06-a06f-7410abaf1925/depozaur-pl-api](https://parse.bot/marketplace/0a724afd-7fa8-4e06-a06f-7410abaf1925/depozaur-pl-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-depozaur-pl-api-0a724afd/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### list_savings_accounts

List Polish savings accounts sorted by highest interest rate. Accounts are filtered by balance range and optionally by whether a linked bank account is required or whether the offer targets new clients. Returns all matching accounts with their parameters including interest rate, balance limits, opening methods, fees, and promotional conditions.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `max_balance` | integer | No | Maximum savings balance in PLN for filtering accounts. |
| `min_balance` | integer | No | Minimum savings balance in PLN for filtering accounts. |
| `new_client` | boolean | No | Filter by whether the account targets new clients. true returns only accounts for new clients; false returns only accounts not specifically for new clients. Omit to return all accounts. |
| `requires_account` | integer | No | Filter by whether a linked bank account is required. 1 returns only accounts requiring a linked account; 0 returns only accounts not requiring one. Omit to return all accounts. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-depozaur-pl-api-0a724afd/list_savings_accounts \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"max_balance":"<integer>","min_balance":"<integer>","new_client":"<boolean>","requires_account":"<integer>"}'
```
