365Scores Sports Data Scraper avatar

365Scores Sports Data Scraper

Pricing

from $3.00 / 1,000 results

Go to Apify Store
365Scores Sports Data Scraper

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

Crawler Bros

Maintained by Community

Actor stats

0

Bookmarked

4

Total users

1

Monthly active users

8 days ago

Last modified

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

SportCode
Football (Soccer)football
Basketballbasketball
Baseballbaseball
Ice Hockeyhockey
Tennistennis
Cricketcricket
Rugbyrugby
Golfgolf
MMAmma

Input

FieldTypeDescription
modestringliveScores, recentGames, standings, or competitions
sportstringSport to fetch (default: football)
competitionstringCompetition slug (e.g. premier-league, bundesliga)
competitionIdintegerDirect 365Scores competition ID (overrides slug)
maxItemsintegerMax records to return (default: 10)

Example Input

{
"mode": "liveScores",
"sport": "football",
"competition": "premier-league",
"maxItems": 10
}

Output

Game Record (liveScores / recentGames)

FieldDescription
gameId365Scores game ID
sportSport name
competitionCompetition name
competitionIdCompetition ID
countryCountry of competition
homeTeamHome team name
homeTeamIdHome team ID
homeScoreHome team score
homeTeamImageUrlHome team logo URL
awayTeamAway team name
awayTeamIdAway team ID
awayScoreAway team score
awayTeamImageUrlAway team logo URL
statusTextGame status (e.g. "Final", "In Progress")
gameTimeScheduled start time
gameUrlLink to game on 365scores.com

Standing Record (standings mode)

FieldDescription
teamNameTeam name
positionLeague table position
playedMatches played
wins / draws / lossesResults breakdown
goalsFor / goalsAgainst / goalDifferenceGoal stats
pointsPoints 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.