Discover/mimer.svk.se API
live

mimer.svk.se APImimer.svk.se

Access Swedish electricity grid data via the Mimer SVK API: consumption/production stats, FCR ancillary service prices, settlement prices, and exchange rates.

Endpoints
6
Updated
3mo ago
Try it
Swedish price area. Accepted values: SN0 (Hela Sverige/whole Sweden), SN1 (SE1), SN2 (SE2)
End date in YYYY-MM-DD format. Defaults to today.
Start date in YYYY-MM-DD format. Defaults to 7 days ago.
Resolution: 0 for hourly, 1 for monthly.
api.parse.bot/scraper/9bc0c92e-6901-4ecc-ae6c-3f790e194799/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Use it in your codegrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/9bc0c92e-6901-4ecc-ae6c-3f790e194799/get_consumption_profiles?area=SN0&to_date=2024-11-30&from_date=2024-11-01&resolution=1' \
  -H 'X-API-Key: $PARSE_API_KEY'
All endpoints · 6 totalclick to expand

Fetch hourly or monthly consumption profile volumes (kWh) for a given date range and Swedish price area. Returns an array of records with period timestamps and kWh values.

Input
ParamTypeDescription
areastringSwedish price area. Accepted values: SN0 (Hela Sverige/whole Sweden), SN1 (SE1), SN2 (SE2), SN3 (SE3), SN4 (SE4). Note: hourly resolution (0) may return empty for individual areas; monthly resolution (1) is confirmed to work for SN0 and SN1.
to_datestringEnd date in YYYY-MM-DD format. Defaults to today.
from_datestringStart date in YYYY-MM-DD format. Defaults to 7 days ago.
resolutionintegerResolution: 0 for hourly, 1 for monthly.
Response
{
  "type": "object",
  "fields": {
    "data": "array of objects with Period, HL/LL kWh values, and Publiceringstidpunkt",
    "status": "string indicating success"
  },
  "sample": {
    "data": [
      {
        "Period": "2024-11-01 00:00",
        "Tot HL+LL (kWh)": "0",
        "LL övrig tid (kWh)": "0",
        "Publiceringstidpunkt": "2024-12-01 14:03",
        "HL mån-fre 06 22 (kWh)": "0"
      }
    ],
    "status": "success"
  }
}

About the mimer.svk.se API

The Mimer SVK API exposes 6 endpoints covering Swedish electricity grid settlement data published by Svenska kraftnät on mimer.svk.se. You can retrieve hourly and monthly consumption profile volumes, production statistics by power type, profile settlement prices in SEK/MWh, Frequency Containment Reserve prices and volumes across bidding zones, and the daily SEK/EUR exchange rates used in ancillary service settlement calculations — all filterable by Swedish price area and date range.

Consumption and Production Data

The get_consumption_profiles endpoint returns hourly or monthly consumption volumes in kWh for a requested date range and price area. The resolution parameter accepts 0 for hourly or 1 for monthly granularity. Each record includes a Period timestamp, HL/LL kWh values, and a Publiceringstidpunkt (publication timestamp). The get_consumption_statistics and get_production_statistics endpoints return similar hourly Avräknad (settled) kWh figures, but are only reliably populated for SN0 (whole Sweden). Requests for individual price areas SN1–SN4 are accepted but may return empty arrays.

Settlement Prices and Exchange Rates

get_profile_settlement_prices returns monthly Schablonavräkningspriser (profile settlement prices) in SEK/MWh. Each record includes HL/LL price fields, a Medelpris (average price), and a publication timestamp. The area parameter accepts SN0 through SN4. get_exchange_rates returns daily SEK/EUR rates keyed by Period and Värde, which SVK uses as the reference rate for ancillary service cost settlements.

FCR Ancillary Services

get_fcr_data provides Frequency Containment Reserve data — FCR-N, FCR-D Up, and FCR-D Down — including prices in EUR/MW and procured volumes broken out by bidding zone (SE1–SE4 and DK2). The auction_type parameter distinguishes Total, D-1, and D-2 auctions; product_type lets you filter to a specific FCR product. Date ranges are specified with from_date and to_date in YYYY-MM-DD format across all endpoints.

Common use cases
  • Track hourly Swedish national electricity consumption in kWh using get_consumption_statistics with area SN0
  • Monitor FCR-N and FCR-D Up/Down ancillary service prices by bidding zone for energy trading analysis
  • Calculate monthly profile settlement costs in SEK/MWh per price area using get_profile_settlement_prices
  • Correlate daily SEK/EUR exchange rates from get_exchange_rates with ancillary service invoices
  • Compare hourly production volumes against consumption profiles to identify grid balance trends over custom date ranges
  • Audit D-1 versus D-2 FCR auction results by filtering get_fcr_data with the auction_type parameter
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000250 req/min

One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does Svenska kraftnät provide an official developer API for Mimer data?+
Svenska kraftnät publishes the Mimer portal at mimer.svk.se for grid settlement data, but there is no formally documented public REST API with developer keys, versioning, or an API reference page available to third parties.
Which price areas reliably return data from get_consumption_statistics and get_production_statistics?+
Only SN0 (Hela Sverige / whole Sweden) is confirmed to return populated data from these two endpoints. The area codes SN1–SN4 (SE1–SE4) are accepted input values but may return empty result arrays. The consumption profiles and settlement prices endpoints handle per-area requests more reliably.
What FCR products and zones does get_fcr_data cover?+
The endpoint returns price and volume data for FCR-N, FCR-D Up, and FCR-D Down products. Volumes are broken out per bidding zone: SE1, SE2, SE3, SE4, and DK2. You can filter by product_type (0 = all, 1 = FCR-N, 2 = FCR-D Up, 3 = FCR-D Down) and by auction_type (1 = Total, 2 = D-1, 3 = D-2).
Does the API cover intraday or real-time spot prices (Elspot/Nord Pool prices)?+
Not currently. The API covers settlement prices (Schablonavräkningspriser), FCR ancillary service prices, production and consumption statistics, and SEK/EUR exchange rates from the Mimer platform. Elspot or Nord Pool day-ahead prices are not included. You can fork this API on Parse and revise it to add an endpoint targeting a Nord Pool data source.
How far back does historical data go, and is pagination supported?+
Date range coverage depends on what Svenska kraftnät has published in Mimer; the endpoints accept arbitrary from_date/to_date or from_month/to_month values in ISO format, but very early historical periods may return sparse or empty results. The endpoints return all matching records in a single array response — there are no pagination parameters exposed.
Page content last updated . Spec covers 6 endpoints from mimer.svk.se.
Related APIs in Government PublicSee all →
identify.plantnet.org API
Identify and explore plant species by searching through Pl@ntNet's comprehensive botanical database to access detailed information like taxonomic families, genera, species descriptions, photos, and community observations. Track plant distributions, view contribution trends, and discover expert contributors within the platform's collaborative plant identification community.
data.lime.bike API
Access real-time availability data for Lime bikes and scooters, including station locations, vehicle status, system alerts, and geofencing zones across multiple cities. Monitor micromobility inventory and service information to find nearby vehicles or plan your trips effectively.
accessdata.fda.gov API
Search and retrieve comprehensive FDA premarket approval information for medical devices, including approval status, supplements, applicant details, and advisory committee data. Get instant access to specific PMA records with all relevant approval information in one place.
eprocurement.gov API
Monitor India's public procurement opportunities by accessing active tenders, bids closing today, global tenders, high-value contracts, and cancelled tenders from the Central Public Procurement Portal. Search tender details, browse participating organizations, and track real-time procurement statistics to stay informed on government contracting opportunities.
cmegroup.com API
Get CME Group market data including FedWatch interest-rate probabilities, futures quotes and settlements, volume/open interest history, and options expirations and near-the-money option chains.
alienvault.com API
Search and analyze global threat intelligence data including indicators of compromise, threat pulses, and adversary profiles from the Open Threat Exchange community. Monitor recent security alerts and access detailed information about threats and adversaries to strengthen your cybersecurity defenses.
api.nasa.gov API
Access NASA's suite of open data APIs — including the Astronomy Picture of the Day, Near Earth Object tracking, DONKI space weather events, EPIC Earth imagery, Mars weather, the NASA Image and Video Library, the Exoplanet Archive, and EONET natural events.
mahatenders.gov.in API
Access Maharashtra government tenders from mahatenders.gov.in, browsing them by closing date or by organization with full tender details and pagination support. Find and review procurement opportunities across different government departments in one place.