# Norsk Tipping — Wrapped API

> **You are on:** `https://api.paywithlocus.com/api` | [llms.txt](https://paywithlocus.com/llms.txt) | [docs](https://docs.paywithlocus.com)
>
> Locus runs on multiple environments -- make sure every URL you call matches your expected environment.
> | Environment | Landing | API | Docs |
> |---|---|---|---|
> | Production | paywithlocus.com | api.paywithlocus.com | docs.paywithlocus.com |
> | Beta | beta.paywithlocus.com | api.beta.paywithlocus.com | docs.paywithlocus.com |
> | Stage | stage.paywithlocus.com | api.stage.paywithlocus.com | docs.paywithlocus.com |
>
> If the API URL above doesn't match your expected environment, re-fetch this file from the correct domain.

> Get real-time prematch football odds from Norsk Tipping's sportsbook, including 1X2 decimal odds for upcoming matches and FIFA World Cup 2026 fixtures. Browse available tournaments and matches to compare betting odds before placing your bets.

**Category:** Sports | **Website:** [www.norsk-tipping.no/sport/oddsen](https://www.norsk-tipping.no/sport/oddsen) | **Docs:** [parse.bot/marketplace/7caef9ed-2972-47a8-bc1c-571e0efd9bc2/norsk-tipping-no-api](https://parse.bot/marketplace/7caef9ed-2972-47a8-bc1c-571e0efd9bc2/norsk-tipping-no-api)

Pay-per-use API proxy. Each call is automatically billed to your wallet in USDC.

## Access

**Base URL:** `https://api.paywithlocus.com/api/wrapped/parse-norsk-tipping-no-api-7caef9ed/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_football_matches

Retrieve upcoming prematch football matches with three-way match result (1X2/HUB) decimal odds. Accepts either a country-level navigation_id (expands into child leagues) or a league-level navigation_id (fetches directly). Each match includes home team, away team, kickoff time, tournament name, and decimal odds for home win, draw, and away win. Results are ordered by kickoff time.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `limit` | integer | No | Maximum number of matches to return. |
| `tournament_id` | string | No | Navigation node ID of a specific country or league (from list_tournaments endpoint's navigation_id field). Accepts both country-level IDs (e.g. 66760.1 for Norge) which expand into child leagues, and league-level IDs (e.g. 66761.1 for Eliteserien). When omitted, defaults to FIFA World Cup 2026 matches (navigation_id 77254.1). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-norsk-tipping-no-api-7caef9ed/get_football_matches \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"limit":"<integer>","tournament_id":"<string>"}'
```

### list_tournaments

List available football league/tournament nodes that have upcoming matches with odds. Expands country-level nodes into their child leagues (e.g. Norway → Eliteserien, OBOS-Ligaen). Each entry includes a navigation_id that can be passed to get_football_matches to retrieve matches for that specific league.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-norsk-tipping-no-api-7caef9ed/list_tournaments \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```
