ワンクリックで
sedlabanki
Central Bank of Iceland — SDMX API for balance sheets and new credit, plus daily key interest rates 2007+ via gagnabanki.is.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Central Bank of Iceland — SDMX API for balance sheets and new credit, plus daily key interest rates 2007+ via gagnabanki.is.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Iceland energy authority — electricity generation, use, fuel sales, power plants and licences. Use for energy-system analysis.
Fiskistofa — public WFS layers for fishing closures, regulations and fishing areas; paid REST catch/quota data is excluded.
Hafrannsóknastofnun / MFRI — annual fish-stock assessments, advice, landings and survey series in embedded tables.
Environment Agency of Iceland GIS — open WFS layers for contaminated land, water, protected areas, noise and wastewater.
Icelandic Met Office (Veðurstofa) — weather observations, stations, forecasts and earthquakes via the modern JSON API at api.vedur.is.
Iceland Tax Authority — annual reports (ársreikningar), company registry, ownership chain mapping by kennitala.
| name | sedlabanki |
| description | Central Bank of Iceland — SDMX API for balance sheets and new credit, plus daily key interest rates 2007+ via gagnabanki.is. |
Monetary and financial statistics: interest rates, balance sheets, and new credit.
Important: Both sedlabanki.is and gagnabanki.is are JavaScript SPAs (Blazor / Angular). Simple HTTP fetches return empty HTML shells. Use Playwright for data extraction.
Three core datasets covering Iceland's monetary system:
Type: Daily observations Period: Jan 2007 - present (18+ years) Frequency: Daily (business days)
Central Bank policy rates:
Source: gagnabanki.is Power BI embed (report key: interests)
The Central Bank's data portal at gagnabanki.is is an Angular SPA wrapping Power BI reports.
Architecture:
GET https://gagnabanki.is/api/config — returns all report IDs, time series keys, filtersGET https://gagnabanki.is/api/embed/{groupId}/{reportId}05060786-7f48-4442-8981-314b262d68a7*.pbidedicated.windows.net)Interest Rate Report:
interests2b28c90f-7da7-4fd0-bd9b-f87ffeddbb07e75e5a3b-6118-4899-a266-62550d1b32e4[17923, 28, 75, 55, 24, 3459, 17922, 4125, 289, 3460, 3461, 3458]Extraction method: Playwright intercepts Power BI querydata responses from *.pbidedicated.windows.net. Data arrives in DSR (DataShapeResult) format with compressed values.
# Fetch interest rates to CSV
uv run python scripts/sedlabanki_rates.py
# Output as JSON
uv run python scripts/sedlabanki_rates.py --json
Output: data/processed/sedlabanki_rates.csv with columns: date, series, value
Type: Stock (end-of-month positions) Period: Sept 1993 - present (387+ months, 32 years) Frequency: Monthly
Full balance sheet of deposit-taking institutions:
Type: Flow (net new lending minus prepayments) Period: Jan 2013 - present (155+ months, 13 years) Frequency: Monthly
New lending by sector and index type:
Portal: https://gagnabanki.is/report/monetary
Download Proxy: https://gagnabanki.is/api/download (POST)
⚠️
fr.sedlabanki.isis not fetchable directly — the proxy is mandatoryThe SDMX host resolves (
217.151.180.10, a Vodafone Iceland xDSL pool address) but black-holes on both 80 and 443 from the public internet: connections hang until timeout rather than being refused. It has never been publicly reachable — archive.org has zero captures of it, ever.The server itself is alive and serving current data. Seðlabanki's own backend reaches it, so every SDMX fetch must go through
POST https://gagnabanki.is/api/download, which performs the GET from inside their network. This is a hard requirement, not a convenience wrapper.The SDMX URL below is therefore a proxy payload, not a URL you can curl. If you
curlit directly you will get aConnectTimeoutand conclude the service is dead. It isn't.The block mechanism (geo-restriction, source-IP allowlist, or a public A record fronting a firewalled host) is unverified — only the effect is established.
| Dataset | URL Type | Direct? | URL |
|---|---|---|---|
| Balance Sheets | SDMX | ❌ proxy only | https://fr.sedlabanki.is/sdmx/v2/table/IS2_EXT/INN_BALANCE_SHEETS_TOTAL/1.0?format=xlsx |
| New Credit | Library | ✅ direct | https://sedlabanki.is/library?itemid=b73e42d6-ba32-4eb3-b39e-1c70d2e45aec |
# Balance Sheets (32 years of monthly stock data)
curl 'https://gagnabanki.is/api/download' \
-X POST -H 'Content-Type: application/json' \
--data-raw '{"url":"https://fr.sedlabanki.is/sdmx/v2/table/IS2_EXT/INN_BALANCE_SHEETS_TOTAL/1.0?format=xlsx"}' \
-o data/raw/sedlabanki/balance_sheets.xlsx
# New Credit (13 years of monthly flow data)
curl 'https://gagnabanki.is/api/download' \
-X POST -H 'Content-Type: application/json' \
--data-raw '{"url":"https://sedlabanki.is/library?itemid=b73e42d6-ba32-4eb3-b39e-1c70d2e45aec"}' \
-o data/raw/sedlabanki/newcredit.xlsx
INN_BALANCE_SHEETS_TOTALKey line items:
Eignir samtals / Assets, total
Innlendar eignir / Domestic assets
Lán / Loans
Útlán / Loans outstanding
Niðurfærslur / Provisions (negative)
Erlendar eignir / Foreign assets
Skuldir samtals / Liabilities, total
Innlán / Deposits
Markaðsskuldabréf / Debt securities issued
Eigið fé / Equity
ISector hierarchy:
Ný útlán / New credit (total)
├── Atvinnufyrirtæki / Non-financial corporations
│ ├── Landbúnaður / Agriculture
│ ├── Fiskveiðar / Fisheries
│ ├── Iðnaður / Manufacturing
│ └── ...
├── Fjármálageiri / Financial corporations
├── Hið opinbera / Government
├── Heimili / Households
│ ├── Lán með veði í íbúð / Mortgage loans
│ │ ├── Breytilegir vextir / Floating rate
│ │ └── Fastir vextir / Fixed rate
│ └── Bílalán / Car loans
└── Erlendur aðili / Non-residents
# Process both datasets to tidy CSVs
uv run python scripts/sedlabanki.py
Outputs:
data/processed/sedlabanki_newcredit.csv - New credit by sectordata/processed/sedlabanki_balance_sheets.csv - Balance sheet items| Icelandic | English |
|---|---|
| Innlánsstofnanir | Deposit institutions (banks) |
| Efnahagur | Balance sheet |
| Eignir | Assets |
| Skuldir | Liabilities |
| Útlán | Loans (outstanding) |
| Ný útlán | New credit (flow) |
| Innlán | Deposits |
| Verðtryggð | Indexed (to inflation) |
| Óverðtryggð | Non-indexed |
| Heimili | Households |
| Atvinnufyrirtæki | Non-financial corporations |
Stock vs Flow: Balance sheets are end-of-month stocks; New credit is monthly flow (new loans minus prepayments)
Indexation: Icelandic loans are either indexed to CPI (verðtryggð) or non-indexed. This distinction is critical for analyzing credit conditions.
Provisional data: Latest months are provisional, revised when annual accounts published
Units: All values in M.kr. (million ISK)
Source: Data collection per Act 92/2019 on the Central Bank of Iceland
Encoding. Icelandic chars (þ, ð, æ, ö) appear in sector names (Heimili, Atvinnufyrirtæki, verðtryggð) across both SDMX exports and the gagnabanki Power BI payload. Read CSV with encoding="utf-8" (the Excel-derived files are utf-8-sig); write JSON with ensure_ascii=False.
-- Example: Household mortgage trends
SELECT date, sector_en, value_mkr
FROM read_csv('../data/processed/sedlabanki_newcredit.csv')
WHERE sector_en LIKE 'Housholds%mortgage%'
ORDER BY date
-- Example: Total bank assets over time
SELECT date, value_mkr as assets_mkr
FROM read_csv('../data/processed/sedlabanki_balance_sheets.csv')
WHERE item_en = 'Assets, total'
ORDER BY date