Understreckat APIunderstreckat.se ↗
Access official Svenska Spel pool-betting results for Topptipset, Stryktipset, and Europatipset, including the correct match outcomes, winning rows, payouts for each prize tier, and recently available rounds. Get up-to-date betting data directly from understreckat.se to check results and prize information.
curl -X GET 'https://api.parse.bot/scraper/cf716c82-99ae-4601-b864-b09c5e32d71e/get_results?game=topptipset' \ -H 'X-API-Key: $PARSE_API_KEY'
Returns the settled result of one round of a Svenska Spel pool game: the correct row, each match (home team, away team, final score, winning sign 1/X/2), the payout per prize tier (correct picks, amount in SEK, number of winning rows), summary figures from the source (turnover, paid out, jackpot when the game shows one, last-updated timestamp as displayed on the site) and the site's list of recently available rounds (about eight) with their round_id. Omitting round_id returns the latest settled round. A round_id that is not one of the available rounds yields a stale_input (input_not_found) error. Topptipset rounds have 8 matches and one prize tier; Stryktipset and Europatipset have 13 matches and several tiers. Monetary summary strings (turnover, paid_out, jackpot) are returned as displayed in Swedish (e.g. '1,8 mkr'). One page request per call.
| Param | Type | Description |
|---|---|---|
| game | string | Which pool game to return results for. |
| round_id | string | Numeric draw number of the round, as emitted in available_rounds[*].round_id of an earlier call for the same game. Omitted = latest settled round. |
{
"type": "object",
"fields": {
"game": "game key the results belong to",
"title": "site heading naming the round date",
"source": "data source named by the site",
"jackpot": "rollover jackpot as displayed; null when the game page shows none",
"matches": "array of {number, home_team, away_team, score, sign} in coupon order; sign is 1, X or 2",
"payouts": "array of prize tiers {correct (integer picks), amount_kr (integer SEK per row), rows (integer winning rows, null if not shown)}",
"updated": "last-updated timestamp as displayed (Swedish format)",
"paid_out": "total paid out as displayed",
"round_id": "numeric draw number of the returned round (string)",
"turnover": "turnover as displayed, e.g. '1,8 mkr'",
"correct_row": "winning signs of all matches concatenated in match order, e.g. X2222X2X",
"available_rounds": "array of {round_id, label, is_latest} from the site's round selector for this game"
},
"sample": {
"data": {
"game": "topptipset",
"title": "Resultat 6 september 2026",
"source": "Svenska Spel",
"jackpot": "0 kr",
"matches": [
{
"sign": "X",
"score": "1-1",
"number": 1,
"away_team": "Milan",
"home_team": "Juventus"
},
{
"sign": "X",
"score": "1-1",
"number": 2,
"away_team": "Sevilla",
"home_team": "Espanyol"
}
],
"payouts": [
{
"rows": 128,
"correct": 8,
"amount_kr": 3094
}
],
"updated": "6 sep. 2026 23:24",
"paid_out": "0,4 mkr",
"round_id": "4315",
"turnover": "0,6 mkr",
"correct_row": "XX221221",
"available_rounds": [
{
"label": "Senaste resultatet · 7 september 2026 · 18:59",
"round_id": "4317",
"is_latest": true
},
{
"label": "6 september 2026 · 20:44",
"round_id": "4315",
"is_latest": false
}
]
},
"status": "success"
}
}About the Understreckat API
The Understreckat API on Parse exposes 1 endpoint for the publicly available data on understreckat.se. Calls return JSON over HTTPS and are billed per successful response.
Pin a release with the API-Snapshot-Version header so canonical updates don't silently change your contract.