Coaches
This endpoint allows you to retrieve the coaches.
Multi-language: This feature allows the user to manually change the language of the API response by adding value to the
lang
attribute. Example:lang=en
.
Pagination: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.
Update Period: The endpoint is updated several times a day.
Recommended Calls: Limit calls to 1 per hour.
You can get the image of the coach by calling the following url: https://images.sportdevs.com/{hash_image}.png
Use Cases
Get coach based on the idhttps://futsal.sportdevs.com/coaches?id=eq.{id}
Get coach from a specific country_idhttps://futsal.sportdevs.com/coaches?country_id=eq.{country_id}
Get coach from a specific team_idhttps://futsal.sportdevs.com/coaches?team_id=eq.{team_id}
Query Parameters
- id integer
Default value:
eq.820
The id of the coach
- country_id integer
Default value:
eq.54
The id of the country
- team_id integer
Default value:
eq.2310
The id of the team
- offset string
Default value:
0
Limiting and Pagination
- limit string
Default value:
50
Limiting and Pagination
- lang string
Default value:
en
Multi-language
- 200
OK
- application/json
- Schema
- Example (from schema)
Schema array
- id integer
The id of the coach
Note: This is a Primary Key.
- name text
The name of the coach
- nickname text
The short name of the coach
- nationality text
The nationality of the coach
- nationality_iso2 character varying
Possible values:
<= 2 characters
The alpha2 of the nationality
- date_of_birth timestamp with time zone
The date of the coach's birth
- hash_image character varying
Possible values:
<= 64 characters
The name of the image
- former_player_id integer
The id of the coach as a former player
- country_id integer
The id of the country
Note: This is a Foreign Key to
countries.id
. - country_name text
The name of the country
- country_hash_image character varying
Possible values:
<= 64 characters
The name image of the country
- team_id integer
The id of the team
Note: This is a Foreign Key to
teams.id
. - team_name text
The name of the team
- team_hash_image character varying
Possible values:
<= 64 characters
The name image of the team
- class_id integer
The id of the class
- class_name text
The name of the class
- class_hash_image character varying
Possible values:
<= 64 characters
The hash image of the class
[
{
"id": 820,
"name": "Matija Đulvat",
"nickname": "M. Đulvat",
"nationality": "HRV",
"nationality_iso2": "HR",
"date_of_birth": "1976-02-22T00:00:00+00:00",
"hash_image": "a5bf5054e0e04ff08789d0f39636181192e492c017ba526ff1b3862ea28f35cf",
"country_id": 54,
"country_name": "Croatia",
"country_hash_image": "15e68b1f46577e27d82b47596b5bb9224ec847838c53432b4ae182a4e20a04e7",
"team_id": 2310,
"team_name": "Futsal Dinamo",
"team_hash_image": "0ed99d0ac1710929daf13fd0343450b506fb9d0e95a8541e090ecfcd111760d2"
}
]