Website with the latest Flamengo news, fixtures, results and standings,
with no ads.
Made with pure PHP and CSS.
Also contains the REST API used by
Meu Mengão App
Site com as últimas notícias, resultados e tabelas do Flamengo, sem anúncios. Feito em PHP e CSS puros. Também contém a API usada pelo aplicativo do Meu Mengão.
API Endpoints (use them with https://www.meumengao.com/api)
GET /noticias
{
[
"id": 12345,
"link": "https://somesite.com/some_article",
"data": "1688689100456", // Milliseconds since epoch
"titulo": "Title",
"logo_site": "<Base 64 string of the logo of the article's site>",
"foto": "<Base 64 string of the article's main image>"
]
}
GET /partidas/proxima
{
"id": "djfKa#21",
"campeonato": "Libertadores",
"campeonato_id": "libertadores",
"data": "1688689100456", // Milliseconds since epoch
"rodada_name": "Oitavas de Final",
"rodada_index" 1, // the position of the round in relation to other rounds, 0 is the oldest round
"time_casa": "Flamengo",
"gols_casa": "3",
"time_fora": "Fluminense",
"gols_fora": "0",
"escudo_casa": "<Base 64 string of the home team logo>",
"escudo_fora": "<Base 64 string of the away team logo>"
}
GET /partidas/resultados
{
[
"id": "djfKa#21",
"campeonato": "Libertadores",
"campeonato_id": "libertadores",
"data": "1688689100456", // Milliseconds since epoch
"rodada_name": "Oitavas de Final",
"rodada_index" 1, // the position of the round in relation to other rounds, 0 is the oldest round
"time_casa": "Flamengo",
"gols_casa": "3",
"time_fora": "Fluminense",
"gols_fora": "0",
"escudo_casa": "<Base 64 string of the home team logo>",
"escudo_fora": "<Base 64 string of the away team logo>"
]
}
GET /partidas/calendario
{
[
"id": "djfKa#21",
"campeonato": "Libertadores",
"campeonato_id": "libertadores",
"data": "1688689100456", // Milliseconds since epoch
"rodada_name": "Oitavas de Final",
"rodada_index" 1, // the position of the round in relation to other rounds, 0 is the oldest round
"time_casa": "Flamengo",
"gols_casa": "3",
"time_fora": "Fluminense",
"gols_fora": "0",
"escudo_casa": "<Base 64 string of the home team logo>",
"escudo_fora": "<Base 64 string of the away team logo>"
]
}
GET /campeonatos
{
[
"id": "libertadores",
"nome": "Libertadores",
"ano": "2023",
"logo": "<Base 64 string of the championship logo>",
"rodada_atual": 1, // index of the most recent round
"rodada_final": 8, // index of the last round
"possui_classificacao": false, // wheter or not the championship has a standings table
]
}
GET /posicao/campeonato/{id}
{
[
"id": "someRandomId",
"posicao": "1",
"nome_time": "Flamengo",
"escudo_time": "<Base 64 string of the team logo>",
"pontos": "90",
"jogos": "38",
"vitorias": "28",
"empates": "6",
"derrotas": "4",
"gols_feitos": "86",
"gols_sofridos": "37",
"saldo_gols": "49",
"campeonato_id": "serie-a",
"classificacao_name": "Grupo A",
"classificacao_index": 0
]
}
GET /partidas/campeonato/{id}
{
[
"id": "djfKa#21",
"campeonato": "Libertadores",
"campeonato_d": "libertadores",
"data": "1688689100456", // Milliseconds since epoch
"rodada_name": "Oitavas de Final",
"rodada_index" 1, // the position of the round in relation to other rounds, 0 is the oldest round
"time_casa": "Flamengo",
"gols_casa": "3",
"time_fora": "Fluminense",
"gols_fora": "0",
"escudo_casa": "<Base 64 string of the home team logo>",
"escudo_fora": "<Base 64 string of the away team logo>"
]
}