GET
Base URL + /injuries - List of all injuried players
{"name":"Javier Pastore","position":"Attacking Midfield","reason":"Ruptured sideband in the knee","start_date":"2016-11-20","end_date":"0000-00-00","club":"Paris Saint-Germain","league":"Ligue 1"},
{"name":"Danny Welbeck","position":"Centre-Forward","reason":"hyaline cartilage","start_date":"2016-05-09","end_date":"2017-01-22","club":"Arsenal FC","league":"Premier League"}
...
To get the list of injuried players for a specific club or league, you can use:
/injuries/club/fc-barcelona
/injuries/league/premier-league
Available clubs and leagues are listed in our API documentation
GET
Base URL + /injuries/format/xml or
/injuries.xml
<item>
<name>Javier Pastore</name>
<position>Attacking Midfield</position>
<reason>Ruptured sideband in the knee</reason>
<start_date>2016-11-20</start_date>
<end_date>0000-00-00</end_date>
<club>Paris Saint-Germain</club>
<league>Ligue 1</league>
</item>
<item>
<name>Danny Welbeck</name>
<position>Centre-Forward</position>
<reason>hyaline cartilage</reason>
<start_date>2016-05-09</start_date>
<end_date>2017-01-22</end_date>
<club>Arsenal FC</club>
<league>Premier League</league>
</item>
...
To get the list of injuried players for a specific club or league, you can use:
/injuries/club/fc-barcelona/format/xml or
/injuries/club/fc-barcelona.xml
/injuries/league/premier-league/format/xml or
/injuries/league/premier-league.xml
Available clubs and leagues are listed in our API documentation
GET
Base URL + /injuries/format/html or
/injuries.html
<table border="0" cellpadding="4" cellspacing="0">
<thead>
<tr>
<th>name</th><th>position</th><th>reason</th><th>start_date</th><th>end_date</th><th>club</th><th>league</th>
</tr>
</thead>
<tbody>
<tr>
<td>Javier Pastore</td><td>Attacking Midfield</td><td>Ruptured sideband in the knee</td><td>2016-11-20</td><td>0000-00-00</td><td>Paris Saint-Germain</td><td>Ligue 1</td></tr>
</tr>
<tr>
<td>Danny Welbeck</td><td>Centre-Forward</td><td>hyaline cartilage</td><td>2016-05-09</td><td>2017-01-22</td><td>Arsenal FC</td><td>Premier League</td></tr>
</tr>
</tbody>
</table>
name | position | reason | start_date | end_date | club | league |
Javier Pastore | Attacking Midfield | Ruptured sideband in the knee | 2016-11-20 | 0000-00-00 | Paris Saint-Germain | Ligue 1 |
Danny Welbeck | Centre-Forward | hyaline cartilage | 2016-05-09 | 2017-01-22 | Arsenal FC | Premier League |
To get the list of injuried players for a specific club or league, you can use:
/injuries/club/fc-barcelona/format/xml or
/injuries/club/fc-barcelona.xml
/injuries/league/premier-league/format/xml or
/injuries/league/premier-league.xml
Available clubs and leagues are listed in our API documentation
GET
Base URL + /injuries/format/php or
/injuries.php
array (
0 =>
stdClass::__set_state(array(
'name' => 'Javier Pastore',
'position' => 'Attacking Midfield',
'url' => 'javier-pastore',
'reason' => 'Ruptured sideband in the knee',
'start_date' => '2016-11-20',
'end_date' => '0000-00-00',
)),
2 =>
stdClass::__set_state(array(
'name' => 'Danny Welbeck',
'position' => 'Centre-Forward',
'url' => 'danny-welbeck',
'reason' => 'hyaline cartilage',
'start_date' => '2016-05-09',
'end_date' => '2017-01-22',
)),...
To get the list of injuried players for a specific club or league, you can use:
/injuries/club/fc-barcelona/format/php or
/injuries/club/fc-barcelona.php
/injuries/league/premier-league/format/php or
/injuries/league/premier-league.php
Available clubs and leagues are listed in our API documentation
GET
Base URL + /injuries/format/csv or
/injuries.csv
name,position,reason,start_date,end_date,club,league
"Javier Pastore","Attacking Midfield","Ruptured sideband in the knee",2016-11-20,0000-00-00,"Paris Saint-Germain","Ligue 1"
"Danny Welbeck",Centre-Forward,"hyaline cartilage",2016-05-09,2017-01-22,"Arsenal FC","Premier League"
To get the list of injuried players for a specific club or league, you can use:
/injuries/club/fc-barcelona/format/csv or
/injuries/club/fc-barcelona.csv
/injuries/league/premier-league/format/csv or
/injuries/league/premier-league.csv
Available clubs and leagues are listed in our API documentation