GET api/Estatistica
Devolve as estatísticas da liga.
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Estatística
EstatisticaDTO| Name | Description | Type | Additional information |
|---|---|---|---|
| MelhorAtaque | string |
None. |
|
| MelhorDefesa | string |
None. |
|
| ClubeMaisVitorias | string |
None. |
|
| ClubeMaisDerrotas | string |
None. |
|
| EstatisticasClubes | Collection of ClassificacaoDTO |
None. |
Response Formats
application/json, text/json
Sample:
{
"MelhorAtaque": "sample string 1",
"MelhorDefesa": "sample string 2",
"ClubeMaisVitorias": "sample string 3",
"ClubeMaisDerrotas": "sample string 4",
"EstatisticasClubes": [
{
"IdClube": 1,
"NomeClube": "sample string 2",
"Jogos": 3,
"Vitorias": 4,
"Empates": 5,
"Derrotas": 6,
"GolosMarcados": 7,
"GolosSofridos": 8,
"DiferencaGolos": 9,
"Pontos": 10
},
{
"IdClube": 1,
"NomeClube": "sample string 2",
"Jogos": 3,
"Vitorias": 4,
"Empates": 5,
"Derrotas": 6,
"GolosMarcados": 7,
"GolosSofridos": 8,
"DiferencaGolos": 9,
"Pontos": 10
}
]
}
application/xml, text/xml
Sample:
<EstatisticaDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/LigaFutebol_API.Models">
<ClubeMaisDerrotas>sample string 4</ClubeMaisDerrotas>
<ClubeMaisVitorias>sample string 3</ClubeMaisVitorias>
<EstatisticasClubes>
<ClassificacaoDTO>
<Derrotas>6</Derrotas>
<DiferencaGolos>9</DiferencaGolos>
<Empates>5</Empates>
<GolosMarcados>7</GolosMarcados>
<GolosSofridos>8</GolosSofridos>
<IdClube>1</IdClube>
<Jogos>3</Jogos>
<NomeClube>sample string 2</NomeClube>
<Pontos>10</Pontos>
<Vitorias>4</Vitorias>
</ClassificacaoDTO>
<ClassificacaoDTO>
<Derrotas>6</Derrotas>
<DiferencaGolos>9</DiferencaGolos>
<Empates>5</Empates>
<GolosMarcados>7</GolosMarcados>
<GolosSofridos>8</GolosSofridos>
<IdClube>1</IdClube>
<Jogos>3</Jogos>
<NomeClube>sample string 2</NomeClube>
<Pontos>10</Pontos>
<Vitorias>4</Vitorias>
</ClassificacaoDTO>
</EstatisticasClubes>
<MelhorAtaque>sample string 1</MelhorAtaque>
<MelhorDefesa>sample string 2</MelhorDefesa>
</EstatisticaDTO>