# Data features per league

## Data features per league

When you’re planning an integration, it’s important to know **which data features are available for each league** in your subscription.

This page explains the different ways to check league‑level coverage and points you to existing resources that already list supported leagues for specific features.

{% hint style="info" %}
League coverage and data features can change over time (for example, when we expand coverage or add new competitions). Always rely on **dynamic endpoints and MySportmonks** as the source of truth, rather than hardcoding static lists from this page.
{% endhint %}

***

### 1. xG (Expected values) coverage per league

For expected values (xG and related metrics), we maintain a dedicated coverage page that lists exactly which leagues are supported.

You can find the current xG league coverage here:

* [Expected > Coverage](https://docs.sportmonks.com/v3/tutorials-and-guides/tutorials/expected/coverage)

That page contains a table with all leagues and their IDs that have Expected values available.

{% hint style="info" %}
Please note that the availability of xG values varies depending on the package you choose.&#x20;

* The **Basic** package offers access straight after the match has finished to all xG statistics.
* The **Advanced** package offers real-time availability to all xG statistics.

You can find more information on our dedicated [pricing page](https://www.sportmonks.com/football-api/plans-pricing).&#x20;
{% endhint %}

***

### 2. Match Facts coverage per league (beta)

For **Match Facts (beta)**, league coverage is documented on the Match Facts page. It also links to a live spreadsheet with the detailed coverage.

* [Match Facts – beta](https://docs.sportmonks.com/v3/endpoints-and-entities/endpoints/match-facts-beta)

On that page you’ll find a **“Download league coverage”** link which contains an up‑to‑date overview of all leagues that currently support Match Facts.

***

### 3. Using MySportmonks to inspect your leagues & features

MySportmonks provides a UI-driven way to see your subscription details, including which leagues and data features are included in your plan.

**To view your subscription information:**

1. Log in to [MySportmonks](https://my.sportmonks.com/).
2. Navigate to **My Subscription** (on the Subscriptions page).
3. View your plan details, which show:
   * **Package level** (Advanced)
   * **Total number of leagues** in your subscription
4. Click the **"Data Features"** button (eye icon) to see a list of all data features available in your plan (e.g., Predictions, Premium Odds, xG Advanced, Match Facts Advanced, Expected Lineups, etc.).
5. Click the **"Leagues"** button to see a searchable list of all leagues included in your subscription, along with their league IDs.

<figure><img src="/files/UbhfZyT5LhNgKLSwx6iH" alt=""><figcaption></figcaption></figure>

***

### 4. Programmatic overview via “My” endpoints

For automated checks and monitoring, you can use our **“My” endpoints** to discover which data features and leagues are available in your account.

These endpoints are introduced here:

* [New endpoints and data features](https://docs.sportmonks.com/v3/welcome/differences-between-api-2-and-api-3/new-endpoints-and-data-features)

The key ideas:

* **My Leagues** –> returns the leagues that are part of your subscription.
* **My Data Features** –> returns the data features you have access to.
* **My Endpoints** –> lists endpoints available for your account.

Combined, these let you:

1. Retrieve the leagues in your plan.
2. Retrieve the data features in your plan.
3. Cross‑reference them in your own system to build a matrix of **league → available features** (e.g. Odds, Predictions, xG, Match Facts, News).

{% hint style="info" %}
You can explore and test all **“My” endpoints** in our official Postman collection or directly from MySportmonks. Use these as your single source of truth for what is actually enabled in your account.
{% endhint %}

***

### 5. Recommended workflow to answer “what’s available for this league?”

If you need to check coverage for a specific league (for example, the Premier League):

1. **Find the league and season**
   * Use the regular [Leagues endpoints](https://docs.sportmonks.com/v3/endpoints-and-entities/endpoints/leagues) (e.g. **GET All Leagues** or **GET League by ID**) or the [Leagues tutorial](/v3/tutorials-and-guides/tutorials/leagues-and-seasons/leagues.md) to identify the correct `league_id` and `season_id`.
2. **Check whether the feature is globally available for that league**
   * For xG: use the [Expected coverage](https://docs.sportmonks.com/v3/tutorials-and-guides/tutorials/expected/coverage) table.
   * For Match Facts: use the coverage sheet linked from the [Match Facts – beta](https://docs.sportmonks.com/v3/endpoints-and-entities/endpoints/match-facts-beta) page.

By following these steps you can always reliably answer: **“Which data features do I have for this league?”** without relying on outdated static lists.


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.sportmonks.com/v3/tutorials-and-guides/tutorials/data-features-per-league.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
