ワンクリックで
nasdaq
Nasdaq Iceland — exchange notices, annual reports, insider trading for listed companies.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Nasdaq Iceland — exchange notices, annual reports, insider trading for listed companies.
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 | nasdaq |
| description | Nasdaq Iceland — exchange notices, annual reports, insider trading for listed companies. |
Exchange notices for Icelandic listed companies (2000-present).
# List companies
uv run python scripts/nasdaq.py companies
uv run python scripts/nasdaq.py companies --first-north
# List categories
uv run python scripts/nasdaq.py categories
# Search (handles Icelandic encoding automatically)
uv run python scripts/nasdaq.py search "arðgreiðsla"
uv run python scripts/nasdaq.py search --company "Arion banki hf." --category "Ársreikningur"
uv run python scripts/nasdaq.py search --company "Icelandair Group hf." --from 2024-01-01
uv run python scripts/nasdaq.py search --company "Fly Play hf." -o data/raw/nasdaq/play.json
| Market | Companies | Flag |
|---|---|---|
| Main Market Iceland | ~30 (banks, airlines, real estate) | default |
| First North Iceland | ~15 (growth companies) | --first-north |
| Icelandic | English |
|---|---|
| Ársreikningur | Annual report |
| Árshlutareikningur (Q1 og Q3) | Quarterly report |
| Innherjaupplýsingar | Insider information |
| Viðskipti stjórnenda | Manager transactions |
| Flöggun | Major shareholding |
{
"date": "2025-02-12 16:30:00",
"company": "Arion banki hf.",
"headline": "Afkoma Arion banka...",
"category": "Ársreikningur",
"url": "https://view.news.eu.nasdaq.com/...",
"attachments": ["https://attachment.news.eu.nasdaq.com/..."]
}
Attachments are direct download URLs (PDFs, xBRL ZIPs). Download with curl:
# Download annual report PDF from attachment URL
curl -sL -o data/raw/nasdaq/reports/reitir_2024.pdf "https://attachment.news.eu.nasdaq.com/a5ca11199cd2e8f22cff77db1c9464763"
Note: The download subcommand is not yet implemented. Use attachment URLs from search results directly.
| Company | Type | Notes |
|---|---|---|
| Reitir fasteignafélag hf. | Commercial RE | ~226B ISK portfolio, 65% pension fund owned |
| Eik fasteignafélag hf. | Commercial RE | ~145B ISK portfolio, Langisjór takeover 2024 |
| Alma íbúðafélag hf. | Residential RE | ~88B ISK, Gíslason family controlled |
| FÍ Fasteignafélag slhf. | RE fund | Closed-end investment fund |
| Bank | Kennitala |
|---|---|
| Arion banki hf. | 5810080150 |
| Íslandsbanki hf. | 4910083880 |
| Landsbankinn hf. | 4710044100 |
# Companies
curl -s 'https://api.news.eu.nasdaq.com/news/metadata.action?globalGroup=exchangeNotice&globalName=NordicMainMarkets&market=Main+Market,+Iceland&resultType=company'
# Announcements (note: requires URL encoding for Icelandic)
curl -s 'https://api.news.eu.nasdaq.com/news/query.action?globalGroup=exchangeNotice&globalName=NordicMainMarkets&market=Main+Market,+Iceland&company=Arion+banki+hf.&limit=10'
Use the wrapper script instead - it handles encoding and pagination.