🏆 Teams
Access global soccer teams with IDs and metadata. Perfect for team lookups and statistics.
https://soccer.gcsboss.com/teams.json
Open-source API for soccer data • Teams • Competitions • Matches
Access global soccer teams with IDs and metadata. Perfect for team lookups and statistics.
https://soccer.gcsboss.com/teams.json
Complete list of leagues and tournaments worldwide. All major competitions covered.
https://soccer.gcsboss.com/competitions.json
Upcoming matches organized by month. 6-month rolling window of live schedules.
https://soccer.gcsboss.com/matches/2026-01.json
Cloudflare CDN delivers data globally with minimal latency
Start using the API immediately, no keys or sign-up needed
Clean, structured data perfect for any framework or language
Teams and competitions from every major league worldwide
Matches updated daily via automated CI/CD pipelines
Built in the open. Contribute on GitHub
fetch('https://soccer.gcsboss.com/teams.json')
.then(res => res.json())
.then(teams => console.log(teams))
curl https://soccer.gcsboss.com/matches/2026-01.json | jq .
import requests
response = requests.get('https://soccer.gcsboss.com/competitions.json')
competitions = response.json()
print(competitions)
Teams: /teams.json
Competitions: /competitions.json
Matches: /matches/YYYY-MM.json
Examples:
/matches/2026-01.json (January 2026)
/matches/2026-02.json (February 2026)