For the complete documentation index, see llms.txt. This page is also available as Markdown.

GET Match Facts by date range

https://api.sportmonks.com/v3/football/match-facts/fixtures/between/START_DATE/END_DATE
{
    "data": [
        {
            "id": 29697955,
            "sport_id": 1,
            "fixture_id": 19609449,
            "type_id": 76089,
            "participant": "away",
            "basis": "h2h",
            "data": {
                "all": {
                    "count": 10,
                    "percentage": 50
                },
                "home": {
                    "count": 4,
                    "percentage": 40
                },
                "away": {
                    "count": 6,
                    "percentage": 60
                }
            },
            "natural_language": "DC United have 10 losses (50.0%) in their Major League Soccer matches against Atlanta United (away only: 6, 60.0%).",
            "category": "statistics",
            "scope": "league_matches"
        },
        {
            "id": 27338547,
            "sport_id": 1,
            "fixture_id": 19609449,
            "type_id": 76091,
            "participant": "away",
            "basis": "h2h",
            "data": {
                "all": {
                    "count": 36,
                    "average": 1.71
                },
                "home": {
                    "count": 11,
                    "average": 1.1
                },
                "away": {
                    "count": 25,
                    "average": 2.27
                }
            },
            "natural_language": "DC United has conceded 36 goals in their matches against Atlanta United",
            "category": "statistics",
            "scope": "allFixtures"
        },
Field
Description
Type

id

Refers the unique id of the match fact entity

integer

sport_id

Refers to the sport of the match fact

integer

fixture_id

Refers to the fixture

integer

type_id

Refers to the type of the match fact

integer

participant

Refers to the team the home or away team

string

basis

Refers to the basis of the match fact

string

Name
Required?
Description

api_token

YES

Another option is to provide the API token in the header.

Your unique API token. Ex. ?api_token=YOUR_TOKEN

include

NO

Enrich the API response with more data by using includes. Ex. &include=fixture;player;team

select

NO

Select specific fields on the base entity. Read how to select fields in our tutorial.

sortBy

NO

Order by specific fields on the base entity. For more information check out this page.

filters

NO

Filter the API response on multiple related entities. There are static filters and dynamic filters.​ Please find the possibilities in the Static and Dynamic Filter tab.

locale

NO

Translate name fields of the API Response in your selected language. Find more information and which languages are available on our translations page.

When you opt for the matchFacts include on one of the fixtures endpoint, you can also use the havingLiveMatchFacts filter. This filters fixtures that have live match facts, such as outcomes by players sent off field & outcomes by goals

The dynamic filters are based on entities and includes. Each dynamic filter uses an entity to filter on and one entity to apply the filter on. Below are examples with explanations of how filters are set up. For more information, please look at our Filters page.

Using an include? Check their respective filters on their entity page. For example if you use &include=fixtures, you can apply fixture-related filters.

Dynamic Filters
Available on Entity
Description
Examples

matchFactTypes

Statistics, Events, Lineup, Transfers and way more. Check this endpoint for all filter possibilities.

Filter the match facts on a selection of type ids separated by a comma.

&filters=matchFactTypes:{type ids}

Using an include? Check their respective filters on their entity page. For example if you use &include=participants you can apply team-related filters.

Filters

More information on how to use filters can be found on our tutorials on how to filter. If you want more information on which filters to use you can check out the following endpoint:

https://api.sportmonks.com/v3/my/filters/entity?api_token=YOUR_TOKEN

Pagination

YES

Include depth

You can use a total of 3 nested includes on this endpoint

Include options

type sport fixture

Run in Postman

Last updated

Was this helpful?