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.
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'
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.
| Param | Type | Description |
|---|---|---|
| area | string | Swedish 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_date | string | End date in YYYY-MM-DD format. Defaults to today. |
| from_date | string | Start date in YYYY-MM-DD format. Defaults to 7 days ago. |
| resolution | integer | Resolution: 0 for hourly, 1 for monthly. |
{
"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.
- 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
| Tier | Price | Credits/month | Rate limit |
|---|---|---|---|
| Free | $0/mo | 100 | 5 req/min |
| Hobby | $30/mo | 1,000 | 20 req/min |
| Developer | $100/mo | 5,000 | 250 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.