Retrieve standardized income statements, balance sheets, and cash flow statements from Swedish companies listed on Nasdaq Stockholm (XSTO). Expanding to MTF/growth markets soon.
Currently in active development with 5,200+ successful API calls made
{
"company": {
"name": "Atlas Copco AB Series A",
"ticker": "ATCO-A",
"isin": "SE0017486889",
"market": "XSTO"
}
,
"period": "2025",
"report_date": "2026-06-14",
"currency": "SEK",
"income_statement": {
"revenue": 168 343 000 000,
"cogs": −96 131 000 000,
"gross_profit": 72 212 000 000,
"selling_expenses": −19 981 000 000,
"administrative_expenses": −10 424 000 000,
"rd_expenses": −7 067 000 000,
"operating_income": 34 114 000 000,
"financial_items": −443 000 000,
"pre_tax_income": 33 671 000 000,
"tax": −7 246 000 000,
"net_income": 26 425 000 000,
"ebitda": 43 643 000 000,
"depreciation_and_amortization": −9 529 000 000
}
,
"balance_sheet": {
"cash_and_equivalents": 15 523 000 000,
"accounts_receivable": 29 891 000 000,
"inventory": 26 659 000 000,
"other_current_assets": 14 945 000 000,
"total_current_assets": 87 018 000 000,
"property_plant_equipment": 7 811 000 000,
"intangible_assets": 77 078 000 000,
"total_non_current_assets": 115 436 000 000,
"total_assets": 202 454 000 000,
"accounts_payable": 16 389 000 000,
"short_term_debt": 6 471 000 000,
"total_current_liabilities": 56 006 000 000,
"long_term_debt": 28 428 000 000,
"pension_liabilities": 1 883 000 000,
"total_non_current_liabilities": 36 065 000 000,
"total_liabilities": 92 071 000 000,
"retained_earnings": 98 446 000 000,
"total_equity": 110 383 000 000
}
,
"cash_flow": {
"operating_cash_flow": 32 566 000 000,
"investing_cash_flow": −17 620 000 000,
"financing_cash_flow": −16 367 000 000,
"capex": −4 284 000 000,
"dividends_paid": −14 610 000 000,
"free_cash_flow": 14 946 000 000
}
}
Standardized income statements (RR), balance sheets (BR), and cash flow statements (KA) for all companies on Nasdaq Stockholm (XSTO).
Track insider transactions with paginated data and aggregated statistics.
View net positions and changes in the short position register from the Swedish FSA.
Use BörsAPI directly in Cursor, Claude Desktop, and Windsurf.
Follow our progress and future plans to build Sweden's most complete open financial database.
Nearly 100% coverage of annual reports for all companies on Nasdaq Stockholm (XSTO) for the period 2018–2025.
Import and processing of interim reports for the period 2018–2025 to offer complete historical quarterly coverage. Active development is underway.
Expansion of the database to include growth markets such as First North, Spotlight, and NGM.
Historical key ratios (P/E, EV/EBITDA, etc.) in progress. Database model and API for insider trading transactions is now completed.
Expansion to listed companies across the Nordics — Norway, Denmark, and Finland.
Our goal is to offer Sweden's most cost-effective solution for financial data. By optimizing our infrastructure, we keep our fees low, aiming to offer a cheap and easy-to-use alternative for corporate reports in JSON format compared to traditional providers.
Testa att göra ett API-anrop direkt i webbläsaren. Välj bolag och period nedan för att se hur anropet och svaret ser ut.
curl -H "Authorization: Bearer fd_din_api_nyckel_här" \ "https://borsapi.se/api/v1/companies/SE0011166610/reports/2023"
Du behöver inte vara en erfaren programmerare för att ha nytta av BörsAPI.se. Hämta finansiell data direkt till ditt kalkylblad i Excel eller Google Sheets för din egna portföljanalys, eller automatisera dina beräkningar med enkla script.
Live-anslut ditt kalkylark
Power Query & modeller
Python / Node.js
Cursor / Claude Desktop / Windsurf
// Gå till Tillägg -> Apps Script i Google Sheets och klistra in:
function BORSAPI(isin, field, period) {
const apiKey = "DIN_API_NYCKEL"; // Byt ut mot din nyckel
const url = "https://borsapi.se/api/v1/companies/" + isin + "/reports/" + period;
const response = UrlFetchApp.fetch(url, {
headers: { "Authorization": "Bearer " + apiKey }
});
const data = JSON.parse(response.getContentText());
return data[field] ?? null;
}
// Använd sedan direkt i valfri cell i ditt kalkylark:
// =BORSAPI("SE0011166610"; "revenue"; "2023") // Atlas Copco AStart free during our beta phase. No hidden fees.