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

GET Coaches by Country ID

Returns coach information from your requested country ID.

https://api.sportmonks.com/v3/football/coaches/countries/{ID}
{
  "data": [
    {
      "id": 8055901,
      "player_id": 8055901,
      "sport_id": 1,
      "country_id": 462,
      "nationality_id": null,
      "city_id": null,
      "common_name": "M. Yates",
      "firstname": "Mark",
      "lastname": "Yates",
      "name": "Mark Yates",
      "display_name": "Mark Yates",
      "image_path": "https://cdn.sportmonks.com/images/soccer/placeholder.png",
      "height": null,
      "weight": null,
      "date_of_birth": "1970-01-24",
      "gender": "male"
    },
    {
      "id": 3472,
      "player_id": 3472,
      "sport_id": 1,
      "country_id": 462,
      "nationality_id": null,
      "city_id": null,
      "common_name": "C. Porter",
      "firstname": "Chris",
      "lastname": "Porter",
      "name": "Chris Porter",
      "display_name": "Chris Porter",
      "image_path": "https://cdn.sportmonks.com/images/soccer/placeholder.png",
      "height": 185,
      "weight": 83,
      "date_of_birth": "1983-12-12",
      "gender": "male"
    },
Field
Description
Type

id

Refers to the unique id of the coach

integer

player_id

Refers to the player related to the coach

integer

sport_id

Refers to the sport related to the coach

integer

country_id

Refers to the country of the coach

integer

nationality_id

Refers to the nationality of the coach

integer

city_id

Refers to the birthcity of the coach

string

common_name

Returns to the common name of the coach

string

firstname

Returns the first name of the coach

string

lastname

Returns the last name of the coach

string

name

Returns the first and last name of the coach

string

display_name

Returns the name that is often used to display in applications

string

image_path

Image path to the coach' headshot

string

height

Returns the height of the coach

integer

weight

Returns the weight of the coach

integer

date_of_birth

Returns the date of birth of the coach

string

gender

Returns the gender of the coach

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=participants;events

select

NO

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

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.

Static filters are always the same and filter in one specific way without any custom options. Each static filter is listed below and has a description of how it filters. For more information, please look at our Filters page.

Static Filters
Available on Entity
Description
Example

N/A

N/A

Not available on this endpoint

N/A

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

detailTypes

Statistics Check this endpoint for all possibilities.

Filter the coach statistics (detailTypes) on a selection of types separated by a comma.

&include=statistics.details.type&filters=coachstatisticdetailTypes:typeIDS &include=statistics.details.type&filters=coachstatisticdetailTypes:59

seasons

Statistics (players, team, coaches, referees), Standings, and way more. Check this endpoint for all possibilities.

Filter coach statistics based on seasons.

&include=statistics.details.type&filters=coachstatisticSeasons:seasonIDS

&include=statistics.details.type&filters=coachstatisticSeasons:19735

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

Paramaters

Parameter
Required
Description
Example

order

No

Returns coaches ordered by id (asc or desc). Defaults to asc

&order=desc

per_page

No

The amount of results to return per page (max 50.). Defaults to 25.

&per_page=30

page

No

You can paginate using the has_more parameter to determine if you can still propagate through the results.

&page=2

Include depth

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

Include options

sport country teams statistics nationality trophies player fixtures latest

The latest include on Coach returns information about their appearances of fixtures played in the last 6 months.

Get an overview and explanation of all the fields returned in the API response. The related entities for the coaches endpoints are:

Postman

We also offer detailed postman documentation with examples and a complete up-to-date version of all our endpoints. Below is a button that lets your fork the collection or import it.

Run in Postman

Code Example

Last updated

Was this helpful?