Status: ok — server is running.
GET /club/search?q=QUERY
Find clubs on Flashscore. Supports football and futsal clubs.
Example: /club/search?q=Sparta
{
"query": "Sparta",
"count": 2,
"results": [
{
"name": "AC Sparta Praha",
"club_id": "v9W6NS8U",
"club_type": "football",
"url": "https://www.flashscore.com/team/sparta/v9W6NS8U/",
"logo_url": "https://static.flashscore.com/res/image/data/...png",
"category": "",
"address": ""
}
]
}
GET /club/{type}/{id}?slug=SLUG
{type}: football | futsal
Example: /club/football/v9W6NS8U?slug=krnov
{
"name": "AC Sparta Praha",
"club_id": "v9W6NS8U",
"club_type": "football",
"club_internal_id": "123456",
"url": "https://www.flashscore.com/team/sparta/v9W6NS8U/",
"logo_url": "https://static.flashscore.com/res/image/data/...png",
"address": "Milady Horákové 98, 160 00 Praha 6",
"category": "Muži A",
"competitions": [
{
"id": "12345",
"code": "1. LIGA",
"name": "Fortuna Liga",
"team_count": "16",
"matches_link": "https://www.flashscore.com/...",
"matches": [
{
"date_time": "12.08.2023 18:00",
"home": "AC Sparta Praha",
"home_id": "v9W6NS8U",
"home_logo_url": "https://.../sparta.png",
"away": "SK Slavia Praha",
"away_id": "11111111-1111-1111-1111-111111111111",
"away_logo_url": "https://.../slavia.png",
"score": "2:1",
"venue": "Stadion Letná",
"match_id": "match12345",
"report_url": "https://www.flashscore.com/match/..."
}
]
}
]
}
GET /club/{type}/{id}/table?slug=SLUG
Returns standings (overall table) for each competition of the club.
Example: /club/football/v9W6NS8U/table?slug=krnov
{
"name": "AC Sparta Praha",
"club_id": "v9W6NS8U",
"club_type": "football",
"club_internal_id": "123456",
"url": "https://www.flashscore.com/team/sparta/v9W6NS8U/",
"logo_url": "https://static.flashscore.com/res/image/data/...png",
"competitions": [
{
"id": "12345",
"code": "1. LIGA",
"name": "Fortuna Liga",
"team_count": "16",
"matches_link": "https://www.flashscore.com/...",
"table": {
"overall": [
{
"rank": "1",
"team": "AC Sparta Praha",
"team_id": "v9W6NS8U",
"team_logo_url": "https://.../sparta.png",
"played": "10",
"wins": "8",
"draws": "2",
"losses": "0",
"score": "25:5",
"points": "26"
},
{
"rank": "2",
"team": "SK Slavia Praha",
"team_id": "11111111-1111-1111-1111-111111111111",
"team_logo_url": "https://.../slavia.png",
"played": "10",
"wins": "7",
"draws": "2",
"losses": "1",
"score": "20:8",
"points": "23"
}
]
}
}
]
}