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

> Access Polish financial market data including current WIBOR interest rates and detailed information about Polish companies listed on the stock market. Search for specific companies and retrieve their financial details to monitor investment opportunities and borrowing rates.

**Category:** Finance & Markets | **Website:** [bankier.pl/](https://bankier.pl/) | **Docs:** [parse.bot/marketplace/53fcf4aa-6e17-4491-827e-3caf3f0c9858/bankier-pl-api](https://parse.bot/marketplace/53fcf4aa-6e17-4491-827e-3caf3f0c9858/bankier-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-bankier-pl-api-53fcf4aa/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_company_details

Get comprehensive financial data for a specific company by its Warsaw Stock Exchange ticker symbol. Returns valuation indicators (P/E ratio as C/Z, price-to-book as C/WK), market capitalization, a recent quarterly financial summary (revenue, operating profit, gross profit by quarter), full historical quarterly financials, and links to latest news articles. The historical data can span decades for established companies.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `ticker` | string | Yes | Stock ticker symbol as listed on the Warsaw Stock Exchange (e.g. KGHM, CDPROJEKT, PKO, PKNORLEN). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-bankier-pl-api-53fcf4aa/get_company_details \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"ticker":"<string>"}'
```

### get_wibor

Retrieve the current WIBOR interbank offered rates (ON, SW, 1M, 3M, 6M, 1R) and their publication date. Returns a single snapshot of all tenor rates published on bankier.pl. No input parameters needed — always returns the latest available rates.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-bankier-pl-api-53fcf4aa/get_wibor \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### list_companies

List all companies from the Warsaw Stock Exchange stock listings page. Returns every company currently listed with its ticker symbol, full name, latest share price (PLN), and daily percentage change. No pagination — the entire listing is returned in a single response.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-bankier-pl-api-53fcf4aa/list_companies \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```
