365Scores Sports Data Scraper
Pricing
from $3.00 / 1,000 results
365Scores Sports Data Scraper
Scrape 365Scores (365scores.com) public API for live sports scores, standings, and competition data. Covers football, basketball, baseball, hockey, tennis, cricket, and more.
Pricing
from $3.00 / 1,000 results
Rating
0.0
(0)
Developer
Crawler Bros
Maintained by CommunityActor stats
0
Bookmarked
4
Total users
1
Monthly active users
8 days ago
Last modified
Categories
Share
Scrape 365Scores (365scores.com) public API for live sports scores, league standings, and competition listings. Covers 9 sports including football, basketball, baseball, hockey, tennis, cricket, rugby, golf, and MMA.
What This Actor Does
Fetches sports data from the 365Scores public API including:
- Live Scores: Today's games with real-time scores and status for any sport/competition
- Recent Games: Latest results with final scores and match details
- Standings: League tables with points, wins, draws, losses, goals
- Competitions: Full list of competitions/leagues available for a sport
Supported Sports
| Sport | Code |
|---|---|
| Football (Soccer) | football |
| Basketball | basketball |
| Baseball | baseball |
| Ice Hockey | hockey |
| Tennis | tennis |
| Cricket | cricket |
| Rugby | rugby |
| Golf | golf |
| MMA | mma |
Input
| Field | Type | Description |
|---|---|---|
mode | string | liveScores, recentGames, standings, or competitions |
sport | string | Sport to fetch (default: football) |
competition | string | Competition slug (e.g. premier-league, bundesliga) |
competitionId | integer | Direct 365Scores competition ID (overrides slug) |
maxItems | integer | Max records to return (default: 10) |
Example Input
{"mode": "liveScores","sport": "football","competition": "premier-league","maxItems": 10}
Output
Game Record (liveScores / recentGames)
| Field | Description |
|---|---|
gameId | 365Scores game ID |
sport | Sport name |
competition | Competition name |
competitionId | Competition ID |
country | Country of competition |
homeTeam | Home team name |
homeTeamId | Home team ID |
homeScore | Home team score |
homeTeamImageUrl | Home team logo URL |
awayTeam | Away team name |
awayTeamId | Away team ID |
awayScore | Away team score |
awayTeamImageUrl | Away team logo URL |
statusText | Game status (e.g. "Final", "In Progress") |
gameTime | Scheduled start time |
gameUrl | Link to game on 365scores.com |
Standing Record (standings mode)
| Field | Description |
|---|---|
teamName | Team name |
position | League table position |
played | Matches played |
wins / draws / losses | Results breakdown |
goalsFor / goalsAgainst / goalDifference | Goal stats |
points | Points total |
Example Output
{"gameId": "12345","sport": "football","competition": "Premier League","country": "England","homeTeam": "Arsenal","awayTeam": "Chelsea","homeScore": 2,"awayScore": 1,"statusText": "Final","gameUrl": "https://www.365scores.com/football/match/12345"}
FAQs
Is this free to use? Yes. 365Scores provides a public REST API used by their website with no API key required.
Why is this actor built instead of WhoScored? WhoScored uses Cloudflare Bot Management that blocks datacenter IPs. 365Scores offers a comparable set of sports data via a fully public API.
How often is data updated? 365Scores updates live scores in real-time during games. Historical data is always available.
How do I find a specific competition ID?
Run the competitions mode to list all competitions for your sport, then use the competitionId field in your next run.
Can I get data for leagues outside the defaults?
Yes — use competitions mode to discover all available competition IDs for any sport, then pass the competitionId directly.