All pages
Powered by GitBook
1 of 1

Loading...

GET Players by Country ID

GET Players by Country ID

Endpoint details

Authorization

API Key

Parameters

Include options

position team stats trophies sidelined transfers lineups country

Includes are the cornerstone of our API and allow you to enrich and customize your requests. This flexibility is what distinguishes us from our competitors.

You can learn more about what includes are and how they work here:

Example response

Check this endpoint in Postman.

https://soccer.sportmonks.com/api/v2.0/countries/{ID}/players

common_name

The common name the player is known for

display_name

The display name of the player. Often used to show in the lineup formation

fullname

The full name of the player

firstname

The first name of the player

lastname

The last name of the player

nationality

The nationality of the player

birthdate

The date of birth of the player

birthcountry

The country the player was born in

birthplace

The place the player was born in

height

The height of the player

weight

The weight of the player

image_path

The URL of the player image

Pagination

NO

Allowed nested includes

2

Available parameters

include

Enrich the API with more data and/or nested includes. Can be used by adding &include= to your request url.

Field

Description

player_id

The unique id of the main player

team_id

The unique id of the team the player belongs to

country_id

The unique id of the country the player is from

position_id

Includes
https://soccer.sportmonks.com/api/v2.0/countries/320/players?api_token={API_TOKEN}
"data": [
        {
            "player_id": 49,
            "team_id": 3,
            "country_id": 320,
            "position_id": 4,
            "common_name": "N. Bendtner",
            "display_name": "Nicklas Bendtner",
            "fullname": "Nicklas Bendtner",
            "firstname": "Nicklas",
            "lastname": "Bendtner",
            "nationality": "Denmark",
            "birthdate": "16/01/1988",
            "birthcountry": "Denmark",
            "birthplace": "København",
            "height": "193 cm",
            "weight": "84 kg",
            "image_path": "https://cdn.sportmonks.com/images/soccer/players/17/49.png"
        },
        {
            "player_id": 169,
            "team_id": 42,
            "country_id": 320,
            "position_id": 1,
            "common_name": "K. Schmeichel",
            "display_name": "Kasper Schmeichel",
            "fullname": "Kasper Schmeichel",
            "firstname": "Kasper",
            "lastname": "Schmeichel",
            "nationality": "Denmark",
            "birthdate": "05/11/1986",
            "birthcountry": "Denmark",
            "birthplace": "København",
            "height": "189 cm",
            "weight": "89 kg",
            "image_path": "https://cdn.sportmonks.com/images/soccer/players/9/169.png"
        },
        {
            "player_id": 269,
            "team_id": 2,
            "country_id": 320,
            "position_id": 2,
            "common_name": "L. Jacobsen",
            "display_name": "Lars Jacobsen",
            "fullname": "Lars Christian Jacobsen",
            "firstname": "Lars Christian",
            "lastname": "Jacobsen",
            "nationality": "Denmark",
            "birthdate": "20/09/1979",
            "birthcountry": "Denmark",
            "birthplace": "Odense",
            "height": "181 cm",
            "weight": "76 kg",
            "image_path": "https://cdn.sportmonks.com/images/soccer/players/13/269.png"
        },
        {
            "player_id": 335,
            "team_id": 11,
            "country_id": 320,
            "position_id": 3,
            "common_name": "L. Andreasen",
            "display_name": "Leon Andreasen",
            "fullname": "Leon Andreasen",
            "firstname": "Leon",
            "lastname": "Andreasen",
            "nationality": "Denmark",
            "birthdate": "23/04/1983",
            "birthcountry": "Denmark",
            "birthplace": "Aarhus",
            "height": "188 cm",
            "weight": "81 kg",
            "image_path": "https://cdn.sportmonks.com/images/soccer/players/15/335.png"
        },
        {
            "player_id": 449,
            "team_id": 26,
            "country_id": 320,
            "position_id": 1,
            "common_name": "T. Løvendahl Sørensen",
            "display_name": "Thomas Sorensen",
            "fullname": "Thomas Løvendahl Sørensen",
            "firstname": "Thomas",
            "lastname": "Løvendahl Sørensen",
            "nationality": "Denmark",
            "birthdate": "12/06/1976",
            "birthcountry": "Denmark",
            "birthplace": "Fredericia",
            "height": "196 cm",
            "weight": "89 kg",
            "image_path": "https://cdn.sportmonks.com/images/soccer/players/1/449.png"
        },

The unique id of the position the player plays in

Run in Postman